
    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_712b6c85fc4834dd45be275a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925000;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_0d641864b0722d1c23bd631b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_c1a037cda7219e96bf3b62de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_46a47eecf8f769eafd8504d1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8b7db198a874f3703023ab63.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926000;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_4adf541d1c01fec47a44a4b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751000;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_424569c5203b3528666b652f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913000;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_b733f02129cbacf52cf9b8eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926000;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_e2203d4f72d3d792aa94cbc7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926000;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_c099a2614bba6a66e1ae5ad5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.931000;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_f0a8c29f296529f0795d9d56.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.896484;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;}
.m7{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m8{transform:matrix(0.216507,0.124999,-0.124999,0.216507,0,0);-ms-transform:matrix(0.216507,0.124999,-0.124999,0.216507,0,0);-webkit-transform:matrix(0.216507,0.124999,-0.124999,0.216507,0,0);}
.m3{transform:matrix(0.249480,-0.053069,0.052015,0.244529,0,0);-ms-transform:matrix(0.249480,-0.053069,0.052015,0.244529,0,0);-webkit-transform:matrix(0.249480,-0.053069,0.052015,0.244529,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255062,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255062,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255063,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-44.299800px;}
.v2{vertical-align:-38.623200px;}
.v4{vertical-align:-26.645400px;}
.v3{vertical-align:-8.328600px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-5.745600px;}
.ls9{letter-spacing:-5.177115px;}
.ls8{letter-spacing:-1.596000px;}
.ls4{letter-spacing:-1.080000px;}
.ls2{letter-spacing:-0.930000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:1.264050px;}
.ls5{letter-spacing:1.273779px;}
.ls3{letter-spacing:1.620000px;}
.ls0{letter-spacing:5.074890px;}
.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;}
}
.ws12{word-spacing:-68.628000px;}
.ws17{word-spacing:-37.409097px;}
.ws13{word-spacing:-30.260160px;}
.ws16{word-spacing:-29.129869px;}
.ws0{word-spacing:-26.477640px;}
.wsd{word-spacing:-25.596000px;}
.wse{word-spacing:-24.516000px;}
.ws8{word-spacing:-24.054979px;}
.ws14{word-spacing:-22.329516px;}
.ws15{word-spacing:-21.517534px;}
.ws6{word-spacing:-21.111000px;}
.wsf{word-spacing:-20.125708px;}
.ws10{word-spacing:-19.971990px;}
.ws1d{word-spacing:-5.074890px;}
.ws19{word-spacing:-1.620000px;}
.ws1a{word-spacing:-1.273779px;}
.ws1b{word-spacing:-1.264050px;}
.ws9{word-spacing:-0.133031px;}
.wsa{word-spacing:-0.112687px;}
.ws18{word-spacing:0.000000px;}
.ws4{word-spacing:5.115000px;}
.ws1c{word-spacing:5.177115px;}
.ws7{word-spacing:5.952000px;}
.ws5{word-spacing:6.696000px;}
.ws2{word-spacing:8.277000px;}
.ws3{word-spacing:8.556000px;}
.ws1{word-spacing:28.923000px;}
.wsb{word-spacing:279.132000px;}
.wsc{word-spacing:887.436000px;}
.ws11{word-spacing:2273.342400px;}
._4{margin-left:-13.406400px;}
._5{margin-left:-12.188652px;}
._8{margin-left:-10.278240px;}
._c{margin-left:-9.274185px;}
._7{margin-left:-8.267280px;}
._9{margin-left:-6.193680px;}
._b{margin-left:-5.132220px;}
._1{margin-left:-3.686760px;}
._6{margin-left:-2.346120px;}
._0{margin-left:-1.340640px;}
._2{width:1.117200px;}
._3{width:2.469012px;}
._a{width:4.185000px;}
._11{width:851.366362px;}
._d{width:1129.086000px;}
._f{width:1264.284000px;}
._e{width:1280.412000px;}
._10{width:3106.773420px;}
.fcc{color:transparent;}
.fcb{color:rgb(251,253,240);}
.fca{color:rgb(20,18,17);}
.fc8{color:rgb(42,59,93);}
.fc7{color:rgb(61,58,57);}
.fc6{color:rgb(17,15,13);}
.fc2{color:rgb(249,173,113);}
.fc9{color:rgb(62,62,63);}
.fc1{color:rgb(16,15,13);}
.fc5{color:rgb(83,107,114);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(83,107,114);}
.fs18{font-size:38.135400px;}
.fs19{font-size:68.589009px;}
.fs17{font-size:72.601200px;}
.fsf{font-size:74.031000px;}
.fsc{font-size:74.032200px;}
.fs8{font-size:77.557200px;}
.fs12{font-size:84.000000px;}
.fs11{font-size:84.000043px;}
.fs1b{font-size:84.270000px;}
.fs15{font-size:84.918600px;}
.fs20{font-size:90.699000px;}
.fs3{font-size:93.000000px;}
.fs1a{font-size:93.344400px;}
.fs16{font-size:96.000000px;}
.fs6{font-size:101.497800px;}
.fs10{font-size:107.722200px;}
.fsd{font-size:107.723400px;}
.fs13{font-size:108.000000px;}
.fs2{font-size:111.720000px;}
.fs9{font-size:112.686600px;}
.fs14{font-size:117.000000px;}
.fs1{font-size:120.000000px;}
.fse{font-size:126.000000px;}
.fs5{font-size:127.680000px;}
.fs1c{font-size:128.031000px;}
.fs0{font-size:132.000000px;}
.fs7{font-size:133.031400px;}
.fsb{font-size:135.079200px;}
.fsa{font-size:135.780786px;}
.fs21{font-size:152.246400px;}
.fs22{font-size:173.995800px;}
.fs1f{font-size:207.084600px;}
.fs4{font-size:216.000000px;}
.fs1d{font-size:319.200000px;}
.fs1e{font-size:359.100000px;}
.y12f{bottom:-53.033100px;}
.y124{bottom:-34.599900px;}
.y131{bottom:-34.599750px;}
.y126{bottom:-34.599300px;}
.y128{bottom:-34.599150px;}
.y122{bottom:-33.562950px;}
.y11e{bottom:-33.562650px;}
.y12a{bottom:-33.561900px;}
.y133{bottom:-20.634450px;}
.y12d{bottom:-20.634150px;}
.y5d{bottom:-0.006750px;}
.y6a{bottom:-0.001200px;}
.y9c{bottom:-0.000750px;}
.y109{bottom:-0.000450px;}
.yfc{bottom:-0.000300px;}
.y0{bottom:0.000000px;}
.y10b{bottom:0.000150px;}
.y10d{bottom:0.000300px;}
.y107{bottom:0.000450px;}
.y78{bottom:0.006600px;}
.y7c{bottom:0.007350px;}
.y87{bottom:3.280800px;}
.y82{bottom:3.281100px;}
.y86{bottom:3.281250px;}
.y89{bottom:3.281400px;}
.y84{bottom:3.281550px;}
.y88{bottom:3.281850px;}
.ye0{bottom:4.010250px;}
.ye2{bottom:4.010400px;}
.yd8{bottom:4.011150px;}
.ydb{bottom:4.011300px;}
.yde{bottom:4.011450px;}
.y59{bottom:4.083600px;}
.y53{bottom:4.083750px;}
.y68{bottom:4.085100px;}
.y7a{bottom:4.085850px;}
.y70{bottom:4.086750px;}
.y65{bottom:4.087500px;}
.y5b{bottom:4.088250px;}
.y6c{bottom:4.089000px;}
.y55{bottom:4.089300px;}
.y4f{bottom:4.089450px;}
.y75{bottom:4.091400px;}
.y66{bottom:4.092150px;}
.y73{bottom:4.092300px;}
.y63{bottom:4.093050px;}
.y57{bottom:4.093200px;}
.y51{bottom:4.094100px;}
.y67{bottom:4.095450px;}
.y5f{bottom:4.095600px;}
.y7e{bottom:4.095900px;}
.y79{bottom:4.096050px;}
.y74{bottom:4.097100px;}
.y64{bottom:4.097850px;}
.y98{bottom:4.639950px;}
.y96{bottom:4.640100px;}
.y94{bottom:4.640250px;}
.y92{bottom:4.640400px;}
.y90{bottom:4.640550px;}
.y8e{bottom:4.640700px;}
.y8c{bottom:4.640850px;}
.y9a{bottom:4.647300px;}
.yf0{bottom:15.785850px;}
.y9d{bottom:16.685250px;}
.y6e{bottom:17.500950px;}
.y80{bottom:17.505600px;}
.y61{bottom:17.506650px;}
.y72{bottom:17.511450px;}
.yf2{bottom:18.269850px;}
.yfa{bottom:31.726200px;}
.yf9{bottom:31.726650px;}
.yf8{bottom:31.726950px;}
.ye8{bottom:31.911150px;}
.ye4{bottom:31.911300px;}
.yec{bottom:31.911450px;}
.ye6{bottom:31.911750px;}
.yea{bottom:31.911900px;}
.yf4{bottom:32.136150px;}
.yf6{bottom:38.814150px;}
.y30{bottom:54.853350px;}
.y120{bottom:55.859550px;}
.y1a{bottom:70.200090px;}
.y2f{bottom:81.846600px;}
.ya{bottom:84.980400px;}
.y23{bottom:85.198500px;}
.y19{bottom:110.698590px;}
.y2e{bottom:120.836850px;}
.y22{bottom:125.697000px;}
.y18{bottom:136.198680px;}
.y9{bottom:145.880400px;}
.y2d{bottom:147.830100px;}
.y21{bottom:151.197090px;}
.y2c{bottom:174.823350px;}
.y17{bottom:176.697180px;}
.y8{bottom:185.780400px;}
.y136{bottom:191.062500px;}
.y20{bottom:191.695590px;}
.y16{bottom:202.197270px;}
.y2b{bottom:213.813600px;}
.y1f{bottom:217.195680px;}
.y7{bottom:225.680400px;}
.y2a{bottom:240.806850px;}
.y15{bottom:242.695770px;}
.yf{bottom:246.885270px;}
.y1e{bottom:257.694180px;}
.yd{bottom:260.822340px;}
.y135{bottom:273.851100px;}
.y29{bottom:279.797100px;}
.y14{bottom:283.194270px;}
.y6{bottom:286.580400px;}
.ye{bottom:294.366270px;}
.y1d{bottom:298.192680px;}
.y28{bottom:306.790350px;}
.yc{bottom:308.303340px;}
.y13{bottom:323.692770px;}
.y5{bottom:326.480400px;}
.y27{bottom:345.780600px;}
.y134{bottom:345.990300px;}
.y12{bottom:349.192860px;}
.y1c{bottom:364.191270px;}
.y4{bottom:366.380400px;}
.yb{bottom:370.782750px;}
.y26{bottom:372.773850px;}
.y11{bottom:389.691360px;}
.y1b{bottom:404.689770px;}
.y3{bottom:406.280400px;}
.y25{bottom:411.764100px;}
.y10{bottom:430.189860px;}
.y24{bottom:438.757350px;}
.y2{bottom:467.180400px;}
.y12c{bottom:473.239500px;}
.y132{bottom:473.239800px;}
.y137{bottom:483.177300px;}
.y129{bottom:486.167250px;}
.y11d{bottom:486.168000px;}
.y121{bottom:486.168300px;}
.y127{bottom:487.204500px;}
.y125{bottom:487.204650px;}
.y130{bottom:487.205100px;}
.y123{bottom:487.205250px;}
.y12b{bottom:487.954800px;}
.y11c{bottom:497.645550px;}
.y12e{bottom:505.638450px;}
.y11f{bottom:521.433450px;}
.y1{bottom:528.080550px;}
.yc7{bottom:719.478000px;}
.yc0{bottom:719.770500px;}
.y105{bottom:722.286750px;}
.yf5{bottom:722.506500px;}
.yf3{bottom:729.184500px;}
.yf7{bottom:729.594000px;}
.yf1{bottom:743.050500px;}
.yef{bottom:745.534500px;}
.yc6{bottom:752.998500px;}
.ybf{bottom:753.291000px;}
.y104{bottom:755.807250px;}
.yd7{bottom:771.607500px;}
.yc5{bottom:786.519000px;}
.yc4{bottom:820.039500px;}
.ybe{bottom:820.332000px;}
.y103{bottom:822.848250px;}
.yd9{bottom:852.543000px;}
.ybd{bottom:853.852500px;}
.y102{bottom:856.368750px;}
.ybc{bottom:887.373000px;}
.y101{bottom:889.889250px;}
.yfb{bottom:919.200000px;}
.yc3{bottom:920.601000px;}
.y100{bottom:923.409750px;}
.yda{bottom:933.477000px;}
.y9e{bottom:942.975600px;}
.yc2{bottom:954.121500px;}
.yff{bottom:956.930250px;}
.yac{bottom:973.229550px;}
.y85{bottom:977.686500px;}
.y8a{bottom:977.688000px;}
.ybb{bottom:983.688150px;}
.y83{bottom:985.813500px;}
.yba{bottom:986.928150px;}
.yc1{bottom:987.642000px;}
.yfe{bottom:990.450750px;}
.yab{bottom:1006.750050px;}
.y81{bottom:1012.381500px;}
.yed{bottom:1012.459500px;}
.ydc{bottom:1014.411000px;}
.yfd{bottom:1023.971250px;}
.yb5{bottom:1037.204550px;}
.yaa{bottom:1040.270550px;}
.ye7{bottom:1040.580000px;}
.ye3{bottom:1048.510500px;}
.ye9{bottom:1066.114500px;}
.y8b{bottom:1072.240500px;}
.ya9{bottom:1073.791050px;}
.ydd{bottom:1095.346500px;}
.yee{bottom:1099.494000px;}
.yb6{bottom:1105.874550px;}
.ya8{bottom:1107.311550px;}
.y10c{bottom:1118.800500px;}
.y13b{bottom:1119.874500px;}
.y9b{bottom:1125.468000px;}
.yb9{bottom:1130.904750px;}
.ya7{bottom:1140.832050px;}
.y8d{bottom:1142.622000px;}
.ydf{bottom:1176.268500px;}
.yb7{bottom:1176.833550px;}
.ye5{bottom:1198.119000px;}
.ya6{bottom:1207.873050px;}
.y8f{bottom:1213.003500px;}
.yeb{bottom:1231.257000px;}
.y10a{bottom:1238.433000px;}
.ya5{bottom:1241.393550px;}
.yb8{bottom:1248.422550px;}
.ye1{bottom:1257.202500px;}
.ya4{bottom:1274.914050px;}
.y91{bottom:1283.385000px;}
.y13d{bottom:1303.162650px;}
.ya3{bottom:1308.434550px;}
.yb4{bottom:1316.151300px;}
.yb3{bottom:1319.364300px;}
.yce{bottom:1323.933150px;}
.yd5{bottom:1327.207050px;}
.ya2{bottom:1341.955050px;}
.yae{bottom:1347.518550px;}
.y93{bottom:1353.766500px;}
.ycd{bottom:1355.777625px;}
.yd4{bottom:1359.051525px;}
.yb2{bottom:1363.013700px;}
.y108{bottom:1374.831000px;}
.ya1{bottom:1375.475550px;}
.ycc{bottom:1387.622100px;}
.yd3{bottom:1390.896000px;}
.ya0{bottom:1408.996050px;}
.ycb{bottom:1419.466575px;}
.yd2{bottom:1422.740475px;}
.y95{bottom:1424.148000px;}
.yaf{bottom:1425.155550px;}
.y9f{bottom:1442.516550px;}
.yca{bottom:1451.311050px;}
.yd1{bottom:1454.584950px;}
.yc9{bottom:1483.155525px;}
.yd0{bottom:1486.429425px;}
.y97{bottom:1494.531000px;}
.y106{bottom:1499.983500px;}
.yb0{bottom:1503.044550px;}
.yc8{bottom:1515.000000px;}
.ycf{bottom:1518.273900px;}
.y13c{bottom:1525.183650px;}
.yd6{bottom:1555.696950px;}
.y10e{bottom:1559.581050px;}
.y10f{bottom:1559.854928px;}
.y99{bottom:1564.905000px;}
.yad{bottom:1575.501000px;}
.yb1{bottom:1579.736550px;}
.y117{bottom:1595.884950px;}
.y114{bottom:1629.400950px;}
.y113{bottom:1662.916950px;}
.y112{bottom:1771.405350px;}
.y111{bottom:1804.925850px;}
.y110{bottom:1838.446350px;}
.y6d{bottom:1857.795000px;}
.y7f{bottom:1858.035000px;}
.y60{bottom:1858.860000px;}
.y71{bottom:1867.785000px;}
.y6b{bottom:1900.440000px;}
.y7d{bottom:1900.680000px;}
.y5e{bottom:1901.505000px;}
.y6f{bottom:1910.445000px;}
.y69{bottom:1928.895000px;}
.y7b{bottom:1929.810000px;}
.y4e{bottom:1931.955000px;}
.y5c{bottom:1932.285000px;}
.y77{bottom:1934.655000px;}
.y50{bottom:1972.380000px;}
.y52{bottom:2012.820000px;}
.y54{bottom:2053.245000px;}
.y56{bottom:2093.670000px;}
.y76{bottom:2134.095000px;}
.y58{bottom:2134.110000px;}
.y5a{bottom:2174.535000px;}
.y116{bottom:2214.544950px;}
.y62{bottom:2248.053150px;}
.y115{bottom:2248.060950px;}
.y48{bottom:2405.608950px;}
.y45{bottom:2459.608950px;}
.y4b{bottom:2459.610300px;}
.y44{bottom:2513.608950px;}
.y4a{bottom:2513.610300px;}
.y46{bottom:2539.986300px;}
.y4c{bottom:2572.256100px;}
.y47{bottom:2594.250000px;}
.y49{bottom:2605.207800px;}
.y4d{bottom:2618.569350px;}
.y147{bottom:2771.259271px;}
.y154{bottom:2786.192310px;}
.y145{bottom:2790.163236px;}
.y14b{bottom:2793.947986px;}
.y3e{bottom:2808.535350px;}
.y144{bottom:2817.212400px;}
.y146{bottom:2821.906673px;}
.y153{bottom:2838.391050px;}
.y3d{bottom:2845.722150px;}
.y43{bottom:2871.845034px;}
.y3c{bottom:2882.908950px;}
.y42{bottom:2902.294374px;}
.y3b{bottom:2920.095750px;}
.y14e{bottom:2933.183400px;}
.y149{bottom:2974.385700px;}
.y3a{bottom:2975.268300px;}
.y11b{bottom:2976.336447px;}
.y152{bottom:2977.215510px;}
.y14f{bottom:2982.653250px;}
.y143{bottom:2990.868671px;}
.y151{bottom:3007.664850px;}
.y11a{bottom:3011.801034px;}
.y39{bottom:3030.414000px;}
.y142{bottom:3034.360478px;}
.y14d{bottom:3060.872788px;}
.y38{bottom:3067.600800px;}
.y141{bottom:3077.852285px;}
.y41{bottom:3086.335260px;}
.y37{bottom:3104.787600px;}
.y40{bottom:3116.784600px;}
.y140{bottom:3121.344093px;}
.y150{bottom:3131.301300px;}
.y36{bottom:3159.960150px;}
.y14a{bottom:3162.308877px;}
.y13f{bottom:3164.835900px;}
.y14c{bottom:3195.281250px;}
.y35{bottom:3215.091000px;}
.y34{bottom:3252.277800px;}
.y33{bottom:3289.464600px;}
.y148{bottom:3319.573950px;}
.y13e{bottom:3320.066850px;}
.y155{bottom:3320.067600px;}
.y32{bottom:3326.651400px;}
.y119{bottom:3333.030813px;}
.y118{bottom:3368.495400px;}
.y31{bottom:3381.824700px;}
.y3f{bottom:3390.524400px;}
.y139{bottom:3586.270800px;}
.y13a{bottom:3588.505200px;}
.y138{bottom:3726.535350px;}
.h4c{height:8.362500px;}
.h49{height:10.203300px;}
.h46{height:10.523550px;}
.h42{height:11.161800px;}
.h4a{height:11.320050px;}
.h40{height:11.480850px;}
.h28{height:19.665000px;}
.h26{height:19.666500px;}
.hf{height:20.040000px;}
.hd{height:20.055000px;}
.h44{height:21.934200px;}
.h1f{height:22.749000px;}
.h1d{height:22.753500px;}
.h20{height:22.755000px;}
.h47{height:25.126050px;}
.h50{height:25.126350px;}
.h4e{height:25.126650px;}
.h3e{height:26.084550px;}
.h35{height:26.356500px;}
.h2a{height:28.601550px;}
.h2c{height:28.609500px;}
.h2e{height:31.093500px;}
.h37{height:31.831500px;}
.h29{height:31.911000px;}
.h2b{height:31.912500px;}
.h41{height:34.228200px;}
.h4d{height:34.228350px;}
.h43{height:34.228800px;}
.h45{height:34.228950px;}
.h3f{height:35.265150px;}
.h3c{height:35.265450px;}
.h48{height:35.266200px;}
.h16{height:40.725000px;}
.h12{height:40.740000px;}
.h32{height:44.550000px;}
.h31{height:44.551500px;}
.h2f{height:44.959500px;}
.h4f{height:48.193650px;}
.h4b{height:48.193950px;}
.h2d{height:51.441757px;}
.h30{height:51.637500px;}
.h27{height:53.579686px;}
.h18{height:54.460500px;}
.h14{height:54.634878px;}
.he{height:54.635764px;}
.h39{height:55.218000px;}
.h38{height:59.788500px;}
.h1e{height:61.992000px;}
.h19{height:61.992032px;}
.h36{height:62.191260px;}
.h24{height:62.669927px;}
.h53{height:64.396290px;}
.h5{height:68.634000px;}
.h34{height:68.888167px;}
.h25{height:70.848000px;}
.h55{height:72.063438px;}
.h3{height:74.461816px;}
.h8{height:74.905376px;}
.h15{height:79.498984px;}
.h11{height:79.499869px;}
.h22{height:79.704000px;}
.h4{height:82.449360px;}
.ha{height:83.162711px;}
.h1c{height:83.236500px;}
.h1a{height:83.238000px;}
.h23{height:86.346000px;}
.h2{height:88.560000px;}
.h1b{height:92.830500px;}
.h13{height:92.988000px;}
.h51{height:94.100160px;}
.h7{height:94.227840px;}
.h3a{height:94.486878px;}
.h1{height:97.284000px;}
.h9{height:98.177173px;}
.hc{height:99.688450px;}
.hb{height:100.206220px;}
.h54{height:112.357843px;}
.h57{height:128.234905px;}
.h56{height:128.408900px;}
.h6{height:159.408000px;}
.h33{height:207.174000px;}
.h3b{height:235.250400px;}
.h3d{height:235.569600px;}
.h52{height:265.015800px;}
.h10{height:288.690000px;}
.h17{height:288.705000px;}
.h21{height:327.477000px;}
.h0{height:3888.000000px;}
.w31{width:0.859350px;}
.w19{width:11.115000px;}
.w1a{width:11.130000px;}
.w3{width:11.955000px;}
.w1{width:11.956500px;}
.w29{width:14.746500px;}
.w2d{width:18.498000px;}
.w17{width:23.460000px;}
.w28{width:27.913500px;}
.w1b{width:29.550000px;}
.w27{width:30.865500px;}
.w22{width:31.860000px;}
.w23{width:31.875000px;}
.w1c{width:33.855000px;}
.w18{width:35.175000px;}
.w21{width:35.295000px;}
.w9{width:35.865000px;}
.w4{width:35.868000px;}
.w2f{width:36.372000px;}
.w14{width:40.698000px;}
.w2{width:40.732350px;}
.w8{width:40.732500px;}
.wd{width:40.740000px;}
.w2b{width:42.118500px;}
.w26{width:42.438000px;}
.w2c{width:43.315500px;}
.w30{width:45.568650px;}
.w2a{width:46.746000px;}
.w25{width:46.986000px;}
.wa{width:47.820000px;}
.w6{width:47.823000px;}
.w5{width:47.824500px;}
.wb{width:47.835000px;}
.w2e{width:54.169500px;}
.w15{width:54.264000px;}
.we{width:54.459000px;}
.w12{width:54.460500px;}
.w1f{width:57.150000px;}
.w20{width:57.165000px;}
.w1d{width:57.870000px;}
.w24{width:57.999000px;}
.w1e{width:69.435000px;}
.w16{width:73.237500px;}
.wf{width:83.236500px;}
.w11{width:83.238000px;}
.w13{width:92.829000px;}
.w10{width:92.830500px;}
.wc{width:389.190000px;}
.w7{width:389.197500px;}
.w0{width:5184.000000px;}
.xac{left:-670.024950px;}
.xaa{left:-628.927800px;}
.xa8{left:-573.228000px;}
.xa6{left:-556.230300px;}
.xa4{left:-490.875000px;}
.xa2{left:-461.032350px;}
.xa0{left:-408.684450px;}
.x9d{left:-375.248400px;}
.x9b{left:-329.841600px;}
.x99{left:-278.849700px;}
.x97{left:-256.187100px;}
.x95{left:-224.189100px;}
.x93{left:-187.880250px;}
.x91{left:-143.033850px;}
.x8f{left:-90.685950px;}
.x8d{left:-30.435150px;}
.x0{left:0.000000px;}
.x6d{left:2.888250px;}
.xb0{left:5.788500px;}
.xae{left:7.461900px;}
.x48{left:12.807600px;}
.x78{left:18.169050px;}
.x75{left:20.130750px;}
.x1f{left:23.227950px;}
.x53{left:55.687350px;}
.xb2{left:95.163600px;}
.x86{left:108.677996px;}
.x1e{left:114.840150px;}
.x7b{left:116.039100px;}
.x8a{left:136.971080px;}
.x28{left:139.197450px;}
.x7c{left:143.829300px;}
.x8b{left:155.392948px;}
.x85{left:157.505850px;}
.x52{left:160.030500px;}
.x1d{left:162.129000px;}
.xb1{left:190.754280px;}
.x20{left:209.358000px;}
.x51{left:244.876500px;}
.x4f{left:258.442500px;}
.x50{left:259.912500px;}
.x12{left:264.144300px;}
.x13{left:301.134300px;}
.x4b{left:322.846500px;}
.x4c{left:327.736500px;}
.x21{left:343.765500px;}
.x54{left:346.444350px;}
.x4d{left:371.019000px;}
.x14{left:395.148300px;}
.x4e{left:407.923500px;}
.x89{left:455.028919px;}
.x88{left:466.913995px;}
.x47{left:482.889000px;}
.x22{left:484.762500px;}
.x87{left:507.356268px;}
.x7d{left:514.867800px;}
.x27{left:520.773000px;}
.x49{left:533.136000px;}
.x4a{left:569.724000px;}
.x23{left:631.401000px;}
.x55{left:739.930650px;}
.x8{left:747.272400px;}
.x24{left:777.453000px;}
.xb3{left:802.696350px;}
.x15{left:879.372000px;}
.x25{left:924.093000px;}
.x1{left:1038.129600px;}
.x26{left:1069.758000px;}
.x2a{left:1404.427500px;}
.x82{left:1442.344500px;}
.x29{left:1452.069000px;}
.x7e{left:1454.323800px;}
.x2b{left:1496.803500px;}
.x56{left:1552.558650px;}
.x16{left:1594.073700px;}
.x2c{left:1631.205000px;}
.x17{left:1689.113700px;}
.x2d{left:1772.205000px;}
.x32{left:1808.220000px;}
.x2e{left:1918.845000px;}
.x2f{left:2064.885000px;}
.x5a{left:2115.766800px;}
.x5f{left:2128.158000px;}
.x5e{left:2150.387400px;}
.x59{left:2151.560100px;}
.x58{left:2165.126100px;}
.x57{left:2178.692100px;}
.x5d{left:2191.085400px;}
.x30{left:2211.525000px;}
.x5c{left:2250.598050px;}
.x61{left:2262.991350px;}
.x18{left:2299.908900px;}
.x31{left:2357.190000px;}
.x5b{left:2361.676050px;}
.x9{left:2364.216750px;}
.x60{left:2374.069350px;}
.xb6{left:2443.620150px;}
.xb{left:2477.233222px;}
.xa{left:2512.858950px;}
.xc{left:2517.071109px;}
.xd{left:2532.904765px;}
.x6{left:2593.882350px;}
.x8c{left:2606.683650px;}
.x7{left:2620.875600px;}
.x3c{left:2687.190000px;}
.x81{left:2695.919850px;}
.x62{left:2703.519150px;}
.x19{left:2723.370150px;}
.x3b{left:2735.115000px;}
.xca{left:2752.345559px;}
.x33{left:2782.875000px;}
.x1a{left:2821.974150px;}
.x1b{left:2880.348150px;}
.xcb{left:2897.797050px;}
.xb5{left:2912.533800px;}
.x34{left:2917.275000px;}
.xc9{left:2941.218000px;}
.x35{left:3058.275000px;}
.x3a{left:3094.290000px;}
.x7f{left:3177.342300px;}
.x36{left:3204.915000px;}
.xb7{left:3307.371900px;}
.xba{left:3325.337011px;}
.xc0{left:3330.484200px;}
.xb9{left:3338.354103px;}
.xbb{left:3347.514280px;}
.x37{left:3350.955000px;}
.xb8{left:3352.030932px;}
.xbc{left:3454.099350px;}
.x1c{left:3463.706550px;}
.x38{left:3497.595000px;}
.xb4{left:3517.461900px;}
.xbd{left:3526.594154px;}
.xbe{left:3599.088957px;}
.x39{left:3643.260000px;}
.x4{left:3653.918850px;}
.xbf{left:3671.583761px;}
.x3{left:3700.087140px;}
.x2{left:3704.192850px;}
.x8e{left:3713.425350px;}
.x90{left:3765.773250px;}
.xc1{left:3791.075700px;}
.xc4{left:3798.678150px;}
.xc2{left:3805.539137px;}
.x92{left:3810.619650px;}
.xc3{left:3814.521692px;}
.x94{left:3846.928500px;}
.x96{left:3878.926500px;}
.x98{left:3901.589100px;}
.x9a{left:3952.581000px;}
.xe{left:3970.828200px;}
.x3e{left:3972.060000px;}
.x76{left:3990.682650px;}
.x9c{left:3998.737050px;}
.x3d{left:4020.255000px;}
.x9e{left:4030.018800px;}
.x9f{left:4031.423850px;}
.x3f{left:4067.490000px;}
.xa1{left:4083.771750px;}
.x77{left:4089.225000px;}
.x80{left:4106.025300px;}
.xa3{left:4113.614400px;}
.x7a{left:4121.216490px;}
.x84{left:4149.234000px;}
.xa5{left:4158.254100px;}
.xf{left:4178.998200px;}
.xa7{left:4195.967400px;}
.x40{left:4201.890000px;}
.xa9{left:4251.667200px;}
.x79{left:4273.998000px;}
.xc6{left:4283.107200px;}
.xab{left:4292.764350px;}
.xc8{left:4312.430400px;}
.xad{left:4338.333000px;}
.xaf{left:4340.006400px;}
.x41{left:4342.890000px;}
.x83{left:4351.054500px;}
.x46{left:4367.355000px;}
.xc5{left:4416.646800px;}
.x5{left:4427.468130px;}
.x42{left:4489.530000px;}
.xc7{left:4539.834300px;}
.x66{left:4549.828978px;}
.x74{left:4554.525000px;}
.x65{left:4557.811327px;}
.x67{left:4562.863983px;}
.x68{left:4564.710963px;}
.x64{left:4583.329366px;}
.x63{left:4589.761950px;}
.x6b{left:4598.730000px;}
.x6a{left:4609.620000px;}
.x43{left:4635.570000px;}
.x6c{left:4665.705000px;}
.x69{left:4689.698700px;}
.x6e{left:4716.915000px;}
.x11{left:4744.398150px;}
.x6f{left:4768.125000px;}
.x44{left:4782.210000px;}
.x70{left:4819.335000px;}
.x10{left:4863.591000px;}
.x71{left:4870.560000px;}
.x72{left:4921.770000px;}
.x45{left:4927.875000px;}
.x73{left:4972.980000px;}
@media print{
.v1{vertical-align:-39.377600pt;}
.v2{vertical-align:-34.331733pt;}
.v4{vertical-align:-23.684800pt;}
.v3{vertical-align:-7.403200pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-5.107200pt;}
.ls9{letter-spacing:-4.601880pt;}
.ls8{letter-spacing:-1.418667pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:-0.826667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1.123600pt;}
.ls5{letter-spacing:1.132248pt;}
.ls3{letter-spacing:1.440000pt;}
.ls0{letter-spacing:4.511013pt;}
.ws12{word-spacing:-61.002667pt;}
.ws17{word-spacing:-33.252531pt;}
.ws13{word-spacing:-26.897920pt;}
.ws16{word-spacing:-25.893217pt;}
.ws0{word-spacing:-23.535680pt;}
.wsd{word-spacing:-22.752000pt;}
.wse{word-spacing:-21.792000pt;}
.ws8{word-spacing:-21.382203pt;}
.ws14{word-spacing:-19.848459pt;}
.ws15{word-spacing:-19.126697pt;}
.ws6{word-spacing:-18.765333pt;}
.wsf{word-spacing:-17.889518pt;}
.ws10{word-spacing:-17.752880pt;}
.ws1d{word-spacing:-4.511013pt;}
.ws19{word-spacing:-1.440000pt;}
.ws1a{word-spacing:-1.132248pt;}
.ws1b{word-spacing:-1.123600pt;}
.ws9{word-spacing:-0.118250pt;}
.wsa{word-spacing:-0.100166pt;}
.ws18{word-spacing:0.000000pt;}
.ws4{word-spacing:4.546667pt;}
.ws1c{word-spacing:4.601880pt;}
.ws7{word-spacing:5.290667pt;}
.ws5{word-spacing:5.952000pt;}
.ws2{word-spacing:7.357333pt;}
.ws3{word-spacing:7.605333pt;}
.ws1{word-spacing:25.709333pt;}
.wsb{word-spacing:248.117333pt;}
.wsc{word-spacing:788.832000pt;}
.ws11{word-spacing:2020.748800pt;}
._4{margin-left:-11.916800pt;}
._5{margin-left:-10.834357pt;}
._8{margin-left:-9.136213pt;}
._c{margin-left:-8.243720pt;}
._7{margin-left:-7.348693pt;}
._9{margin-left:-5.505493pt;}
._b{margin-left:-4.561973pt;}
._1{margin-left:-3.277120pt;}
._6{margin-left:-2.085440pt;}
._0{margin-left:-1.191680pt;}
._2{width:0.993067pt;}
._3{width:2.194677pt;}
._a{width:3.720000pt;}
._11{width:756.770099pt;}
._d{width:1003.632000pt;}
._f{width:1123.808000pt;}
._e{width:1138.144000pt;}
._10{width:2761.576373pt;}
.fs18{font-size:33.898133pt;}
.fs19{font-size:60.968008pt;}
.fs17{font-size:64.534400pt;}
.fsf{font-size:65.805333pt;}
.fsc{font-size:65.806400pt;}
.fs8{font-size:68.939733pt;}
.fs12{font-size:74.666667pt;}
.fs11{font-size:74.666705pt;}
.fs1b{font-size:74.906667pt;}
.fs15{font-size:75.483200pt;}
.fs20{font-size:80.621333pt;}
.fs3{font-size:82.666667pt;}
.fs1a{font-size:82.972800pt;}
.fs16{font-size:85.333333pt;}
.fs6{font-size:90.220267pt;}
.fs10{font-size:95.753067pt;}
.fsd{font-size:95.754133pt;}
.fs13{font-size:96.000000pt;}
.fs2{font-size:99.306667pt;}
.fs9{font-size:100.165867pt;}
.fs14{font-size:104.000000pt;}
.fs1{font-size:106.666667pt;}
.fse{font-size:112.000000pt;}
.fs5{font-size:113.493333pt;}
.fs1c{font-size:113.805333pt;}
.fs0{font-size:117.333333pt;}
.fs7{font-size:118.250133pt;}
.fsb{font-size:120.070400pt;}
.fsa{font-size:120.694032pt;}
.fs21{font-size:135.330133pt;}
.fs22{font-size:154.662933pt;}
.fs1f{font-size:184.075200pt;}
.fs4{font-size:192.000000pt;}
.fs1d{font-size:283.733333pt;}
.fs1e{font-size:319.200000pt;}
.y12f{bottom:-47.140533pt;}
.y124{bottom:-30.755467pt;}
.y131{bottom:-30.755333pt;}
.y126{bottom:-30.754933pt;}
.y128{bottom:-30.754800pt;}
.y122{bottom:-29.833733pt;}
.y11e{bottom:-29.833467pt;}
.y12a{bottom:-29.832800pt;}
.y133{bottom:-18.341733pt;}
.y12d{bottom:-18.341467pt;}
.y5d{bottom:-0.006000pt;}
.y6a{bottom:-0.001067pt;}
.y9c{bottom:-0.000667pt;}
.y109{bottom:-0.000400pt;}
.yfc{bottom:-0.000267pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:0.000133pt;}
.y10d{bottom:0.000267pt;}
.y107{bottom:0.000400pt;}
.y78{bottom:0.005867pt;}
.y7c{bottom:0.006533pt;}
.y87{bottom:2.916267pt;}
.y82{bottom:2.916533pt;}
.y86{bottom:2.916667pt;}
.y89{bottom:2.916800pt;}
.y84{bottom:2.916933pt;}
.y88{bottom:2.917200pt;}
.ye0{bottom:3.564667pt;}
.ye2{bottom:3.564800pt;}
.yd8{bottom:3.565467pt;}
.ydb{bottom:3.565600pt;}
.yde{bottom:3.565733pt;}
.y59{bottom:3.629867pt;}
.y53{bottom:3.630000pt;}
.y68{bottom:3.631200pt;}
.y7a{bottom:3.631867pt;}
.y70{bottom:3.632667pt;}
.y65{bottom:3.633333pt;}
.y5b{bottom:3.634000pt;}
.y6c{bottom:3.634667pt;}
.y55{bottom:3.634933pt;}
.y4f{bottom:3.635067pt;}
.y75{bottom:3.636800pt;}
.y66{bottom:3.637467pt;}
.y73{bottom:3.637600pt;}
.y63{bottom:3.638267pt;}
.y57{bottom:3.638400pt;}
.y51{bottom:3.639200pt;}
.y67{bottom:3.640400pt;}
.y5f{bottom:3.640533pt;}
.y7e{bottom:3.640800pt;}
.y79{bottom:3.640933pt;}
.y74{bottom:3.641867pt;}
.y64{bottom:3.642533pt;}
.y98{bottom:4.124400pt;}
.y96{bottom:4.124533pt;}
.y94{bottom:4.124667pt;}
.y92{bottom:4.124800pt;}
.y90{bottom:4.124933pt;}
.y8e{bottom:4.125067pt;}
.y8c{bottom:4.125200pt;}
.y9a{bottom:4.130933pt;}
.yf0{bottom:14.031867pt;}
.y9d{bottom:14.831333pt;}
.y6e{bottom:15.556400pt;}
.y80{bottom:15.560533pt;}
.y61{bottom:15.561467pt;}
.y72{bottom:15.565733pt;}
.yf2{bottom:16.239867pt;}
.yfa{bottom:28.201067pt;}
.yf9{bottom:28.201467pt;}
.yf8{bottom:28.201733pt;}
.ye8{bottom:28.365467pt;}
.ye4{bottom:28.365600pt;}
.yec{bottom:28.365733pt;}
.ye6{bottom:28.366000pt;}
.yea{bottom:28.366133pt;}
.yf4{bottom:28.565467pt;}
.yf6{bottom:34.501467pt;}
.y30{bottom:48.758533pt;}
.y120{bottom:49.652933pt;}
.y1a{bottom:62.400080pt;}
.y2f{bottom:72.752533pt;}
.ya{bottom:75.538133pt;}
.y23{bottom:75.732000pt;}
.y19{bottom:98.398747pt;}
.y2e{bottom:107.410533pt;}
.y22{bottom:111.730667pt;}
.y18{bottom:121.065493pt;}
.y9{bottom:129.671467pt;}
.y2d{bottom:131.404533pt;}
.y21{bottom:134.397413pt;}
.y2c{bottom:155.398533pt;}
.y17{bottom:157.064160pt;}
.y8{bottom:165.138133pt;}
.y136{bottom:169.833333pt;}
.y20{bottom:170.396080pt;}
.y16{bottom:179.730907pt;}
.y2b{bottom:190.056533pt;}
.y1f{bottom:193.062827pt;}
.y7{bottom:200.604800pt;}
.y2a{bottom:214.050533pt;}
.y15{bottom:215.729573pt;}
.yf{bottom:219.453573pt;}
.y1e{bottom:229.061493pt;}
.yd{bottom:231.842080pt;}
.y135{bottom:243.423200pt;}
.y29{bottom:248.708533pt;}
.y14{bottom:251.728240pt;}
.y6{bottom:254.738133pt;}
.ye{bottom:261.658907pt;}
.y1d{bottom:265.060160pt;}
.y28{bottom:272.702533pt;}
.yc{bottom:274.047413pt;}
.y13{bottom:287.726907pt;}
.y5{bottom:290.204800pt;}
.y27{bottom:307.360533pt;}
.y134{bottom:307.546933pt;}
.y12{bottom:310.393653pt;}
.y1c{bottom:323.725573pt;}
.y4{bottom:325.671467pt;}
.yb{bottom:329.584667pt;}
.y26{bottom:331.354533pt;}
.y11{bottom:346.392320pt;}
.y1b{bottom:359.724240pt;}
.y3{bottom:361.138133pt;}
.y25{bottom:366.012533pt;}
.y10{bottom:382.390987pt;}
.y24{bottom:390.006533pt;}
.y2{bottom:415.271467pt;}
.y12c{bottom:420.657333pt;}
.y132{bottom:420.657600pt;}
.y137{bottom:429.490933pt;}
.y129{bottom:432.148667pt;}
.y11d{bottom:432.149333pt;}
.y121{bottom:432.149600pt;}
.y127{bottom:433.070667pt;}
.y125{bottom:433.070800pt;}
.y130{bottom:433.071200pt;}
.y123{bottom:433.071333pt;}
.y12b{bottom:433.737600pt;}
.y11c{bottom:442.351600pt;}
.y12e{bottom:449.456400pt;}
.y11f{bottom:463.496400pt;}
.y1{bottom:469.404933pt;}
.yc7{bottom:639.536000pt;}
.yc0{bottom:639.796000pt;}
.y105{bottom:642.032667pt;}
.yf5{bottom:642.228000pt;}
.yf3{bottom:648.164000pt;}
.yf7{bottom:648.528000pt;}
.yf1{bottom:660.489333pt;}
.yef{bottom:662.697333pt;}
.yc6{bottom:669.332000pt;}
.ybf{bottom:669.592000pt;}
.y104{bottom:671.828667pt;}
.yd7{bottom:685.873333pt;}
.yc5{bottom:699.128000pt;}
.yc4{bottom:728.924000pt;}
.ybe{bottom:729.184000pt;}
.y103{bottom:731.420667pt;}
.yd9{bottom:757.816000pt;}
.ybd{bottom:758.980000pt;}
.y102{bottom:761.216667pt;}
.ybc{bottom:788.776000pt;}
.y101{bottom:791.012667pt;}
.yfb{bottom:817.066667pt;}
.yc3{bottom:818.312000pt;}
.y100{bottom:820.808667pt;}
.yda{bottom:829.757333pt;}
.y9e{bottom:838.200533pt;}
.yc2{bottom:848.108000pt;}
.yff{bottom:850.604667pt;}
.yac{bottom:865.092933pt;}
.y85{bottom:869.054667pt;}
.y8a{bottom:869.056000pt;}
.ybb{bottom:874.389467pt;}
.y83{bottom:876.278667pt;}
.yba{bottom:877.269467pt;}
.yc1{bottom:877.904000pt;}
.yfe{bottom:880.400667pt;}
.yab{bottom:894.888933pt;}
.y81{bottom:899.894667pt;}
.yed{bottom:899.964000pt;}
.ydc{bottom:901.698667pt;}
.yfd{bottom:910.196667pt;}
.yb5{bottom:921.959600pt;}
.yaa{bottom:924.684933pt;}
.ye7{bottom:924.960000pt;}
.ye3{bottom:932.009333pt;}
.ye9{bottom:947.657333pt;}
.y8b{bottom:953.102667pt;}
.ya9{bottom:954.480933pt;}
.ydd{bottom:973.641333pt;}
.yee{bottom:977.328000pt;}
.yb6{bottom:982.999600pt;}
.ya8{bottom:984.276933pt;}
.y10c{bottom:994.489333pt;}
.y13b{bottom:995.444000pt;}
.y9b{bottom:1000.416000pt;}
.yb9{bottom:1005.248667pt;}
.ya7{bottom:1014.072933pt;}
.y8d{bottom:1015.664000pt;}
.ydf{bottom:1045.572000pt;}
.yb7{bottom:1046.074267pt;}
.ye5{bottom:1064.994667pt;}
.ya6{bottom:1073.664933pt;}
.y8f{bottom:1078.225333pt;}
.yeb{bottom:1094.450667pt;}
.y10a{bottom:1100.829333pt;}
.ya5{bottom:1103.460933pt;}
.yb8{bottom:1109.708933pt;}
.ye1{bottom:1117.513333pt;}
.ya4{bottom:1133.256933pt;}
.y91{bottom:1140.786667pt;}
.y13d{bottom:1158.366800pt;}
.ya3{bottom:1163.052933pt;}
.yb4{bottom:1169.912267pt;}
.yb3{bottom:1172.768267pt;}
.yce{bottom:1176.829467pt;}
.yd5{bottom:1179.739600pt;}
.ya2{bottom:1192.848933pt;}
.yae{bottom:1197.794267pt;}
.y93{bottom:1203.348000pt;}
.ycd{bottom:1205.135667pt;}
.yd4{bottom:1208.045800pt;}
.yb2{bottom:1211.567733pt;}
.y108{bottom:1222.072000pt;}
.ya1{bottom:1222.644933pt;}
.ycc{bottom:1233.441867pt;}
.yd3{bottom:1236.352000pt;}
.ya0{bottom:1252.440933pt;}
.ycb{bottom:1261.748067pt;}
.yd2{bottom:1264.658200pt;}
.y95{bottom:1265.909333pt;}
.yaf{bottom:1266.804933pt;}
.y9f{bottom:1282.236933pt;}
.yca{bottom:1290.054267pt;}
.yd1{bottom:1292.964400pt;}
.yc9{bottom:1318.360467pt;}
.yd0{bottom:1321.270600pt;}
.y97{bottom:1328.472000pt;}
.y106{bottom:1333.318667pt;}
.yb0{bottom:1336.039600pt;}
.yc8{bottom:1346.666667pt;}
.ycf{bottom:1349.576800pt;}
.y13c{bottom:1355.718800pt;}
.yd6{bottom:1382.841733pt;}
.y10e{bottom:1386.294267pt;}
.y10f{bottom:1386.537713pt;}
.y99{bottom:1391.026667pt;}
.yad{bottom:1400.445333pt;}
.yb1{bottom:1404.210267pt;}
.y117{bottom:1418.564400pt;}
.y114{bottom:1448.356400pt;}
.y113{bottom:1478.148400pt;}
.y112{bottom:1574.582533pt;}
.y111{bottom:1604.378533pt;}
.y110{bottom:1634.174533pt;}
.y6d{bottom:1651.373333pt;}
.y7f{bottom:1651.586667pt;}
.y60{bottom:1652.320000pt;}
.y71{bottom:1660.253333pt;}
.y6b{bottom:1689.280000pt;}
.y7d{bottom:1689.493333pt;}
.y5e{bottom:1690.226667pt;}
.y6f{bottom:1698.173333pt;}
.y69{bottom:1714.573333pt;}
.y7b{bottom:1715.386667pt;}
.y4e{bottom:1717.293333pt;}
.y5c{bottom:1717.586667pt;}
.y77{bottom:1719.693333pt;}
.y50{bottom:1753.226667pt;}
.y52{bottom:1789.173333pt;}
.y54{bottom:1825.106667pt;}
.y56{bottom:1861.040000pt;}
.y76{bottom:1896.973333pt;}
.y58{bottom:1896.986667pt;}
.y5a{bottom:1932.920000pt;}
.y116{bottom:1968.484400pt;}
.y62{bottom:1998.269467pt;}
.y115{bottom:1998.276400pt;}
.y48{bottom:2138.319067pt;}
.y45{bottom:2186.319067pt;}
.y4b{bottom:2186.320267pt;}
.y44{bottom:2234.319067pt;}
.y4a{bottom:2234.320267pt;}
.y46{bottom:2257.765600pt;}
.y4c{bottom:2286.449867pt;}
.y47{bottom:2306.000000pt;}
.y49{bottom:2315.740267pt;}
.y4d{bottom:2327.617200pt;}
.y147{bottom:2463.341574pt;}
.y154{bottom:2476.615387pt;}
.y145{bottom:2480.145099pt;}
.y14b{bottom:2483.509321pt;}
.y3e{bottom:2496.475867pt;}
.y144{bottom:2504.188800pt;}
.y146{bottom:2508.361487pt;}
.y153{bottom:2523.014267pt;}
.y3d{bottom:2529.530800pt;}
.y43{bottom:2552.751141pt;}
.y3c{bottom:2562.585733pt;}
.y42{bottom:2579.817221pt;}
.y3b{bottom:2595.640667pt;}
.y14e{bottom:2607.274133pt;}
.y149{bottom:2643.898400pt;}
.y3a{bottom:2644.682933pt;}
.y11b{bottom:2645.632397pt;}
.y152{bottom:2646.413787pt;}
.y14f{bottom:2651.247333pt;}
.y143{bottom:2658.549930pt;}
.y151{bottom:2673.479867pt;}
.y11a{bottom:2677.156475pt;}
.y39{bottom:2693.701333pt;}
.y142{bottom:2697.209314pt;}
.y14d{bottom:2720.775812pt;}
.y38{bottom:2726.756267pt;}
.y141{bottom:2735.868698pt;}
.y41{bottom:2743.409120pt;}
.y37{bottom:2759.811200pt;}
.y40{bottom:2770.475200pt;}
.y140{bottom:2774.528082pt;}
.y150{bottom:2783.378933pt;}
.y36{bottom:2808.853467pt;}
.y14a{bottom:2810.941224pt;}
.y13f{bottom:2813.187467pt;}
.y14c{bottom:2840.250000pt;}
.y35{bottom:2857.858667pt;}
.y34{bottom:2890.913600pt;}
.y33{bottom:2923.968533pt;}
.y148{bottom:2950.732400pt;}
.y13e{bottom:2951.170533pt;}
.y155{bottom:2951.171200pt;}
.y32{bottom:2957.023467pt;}
.y119{bottom:2962.694056pt;}
.y118{bottom:2994.218133pt;}
.y31{bottom:3006.066400pt;}
.y3f{bottom:3013.799467pt;}
.y139{bottom:3187.796267pt;}
.y13a{bottom:3189.782400pt;}
.y138{bottom:3312.475867pt;}
.h4c{height:7.433333pt;}
.h49{height:9.069600pt;}
.h46{height:9.354267pt;}
.h42{height:9.921600pt;}
.h4a{height:10.062267pt;}
.h40{height:10.205200pt;}
.h28{height:17.480000pt;}
.h26{height:17.481333pt;}
.hf{height:17.813333pt;}
.hd{height:17.826667pt;}
.h44{height:19.497067pt;}
.h1f{height:20.221333pt;}
.h1d{height:20.225333pt;}
.h20{height:20.226667pt;}
.h47{height:22.334267pt;}
.h50{height:22.334533pt;}
.h4e{height:22.334800pt;}
.h3e{height:23.186267pt;}
.h35{height:23.428000pt;}
.h2a{height:25.423600pt;}
.h2c{height:25.430667pt;}
.h2e{height:27.638667pt;}
.h37{height:28.294667pt;}
.h29{height:28.365333pt;}
.h2b{height:28.366667pt;}
.h41{height:30.425067pt;}
.h4d{height:30.425200pt;}
.h43{height:30.425600pt;}
.h45{height:30.425733pt;}
.h3f{height:31.346800pt;}
.h3c{height:31.347067pt;}
.h48{height:31.347733pt;}
.h16{height:36.200000pt;}
.h12{height:36.213333pt;}
.h32{height:39.600000pt;}
.h31{height:39.601333pt;}
.h2f{height:39.964000pt;}
.h4f{height:42.838800pt;}
.h4b{height:42.839067pt;}
.h2d{height:45.726006pt;}
.h30{height:45.900000pt;}
.h27{height:47.626387pt;}
.h18{height:48.409333pt;}
.h14{height:48.564336pt;}
.he{height:48.565123pt;}
.h39{height:49.082667pt;}
.h38{height:53.145333pt;}
.h1e{height:55.104000pt;}
.h19{height:55.104028pt;}
.h36{height:55.281120pt;}
.h24{height:55.706602pt;}
.h53{height:57.241147pt;}
.h5{height:61.008000pt;}
.h34{height:61.233926pt;}
.h25{height:62.976000pt;}
.h55{height:64.056389pt;}
.h3{height:66.188281pt;}
.h8{height:66.582557pt;}
.h15{height:70.665763pt;}
.h11{height:70.666550pt;}
.h22{height:70.848000pt;}
.h4{height:73.288320pt;}
.ha{height:73.922410pt;}
.h1c{height:73.988000pt;}
.h1a{height:73.989333pt;}
.h23{height:76.752000pt;}
.h2{height:78.720000pt;}
.h1b{height:82.516000pt;}
.h13{height:82.656000pt;}
.h51{height:83.644587pt;}
.h7{height:83.758080pt;}
.h3a{height:83.988336pt;}
.h1{height:86.474667pt;}
.h9{height:87.268598pt;}
.hc{height:88.611955pt;}
.hb{height:89.072196pt;}
.h54{height:99.873638pt;}
.h57{height:113.986582pt;}
.h56{height:114.141245pt;}
.h6{height:141.696000pt;}
.h33{height:184.154667pt;}
.h3b{height:209.111467pt;}
.h3d{height:209.395200pt;}
.h52{height:235.569600pt;}
.h10{height:256.613333pt;}
.h17{height:256.626667pt;}
.h21{height:291.090667pt;}
.h0{height:3456.000000pt;}
.w31{width:0.763867pt;}
.w19{width:9.880000pt;}
.w1a{width:9.893333pt;}
.w3{width:10.626667pt;}
.w1{width:10.628000pt;}
.w29{width:13.108000pt;}
.w2d{width:16.442667pt;}
.w17{width:20.853333pt;}
.w28{width:24.812000pt;}
.w1b{width:26.266667pt;}
.w27{width:27.436000pt;}
.w22{width:28.320000pt;}
.w23{width:28.333333pt;}
.w1c{width:30.093333pt;}
.w18{width:31.266667pt;}
.w21{width:31.373333pt;}
.w9{width:31.880000pt;}
.w4{width:31.882667pt;}
.w2f{width:32.330667pt;}
.w14{width:36.176000pt;}
.w2{width:36.206533pt;}
.w8{width:36.206667pt;}
.wd{width:36.213333pt;}
.w2b{width:37.438667pt;}
.w26{width:37.722667pt;}
.w2c{width:38.502667pt;}
.w30{width:40.505467pt;}
.w2a{width:41.552000pt;}
.w25{width:41.765333pt;}
.wa{width:42.506667pt;}
.w6{width:42.509333pt;}
.w5{width:42.510667pt;}
.wb{width:42.520000pt;}
.w2e{width:48.150667pt;}
.w15{width:48.234667pt;}
.we{width:48.408000pt;}
.w12{width:48.409333pt;}
.w1f{width:50.800000pt;}
.w20{width:50.813333pt;}
.w1d{width:51.440000pt;}
.w24{width:51.554667pt;}
.w1e{width:61.720000pt;}
.w16{width:65.100000pt;}
.wf{width:73.988000pt;}
.w11{width:73.989333pt;}
.w13{width:82.514667pt;}
.w10{width:82.516000pt;}
.wc{width:345.946667pt;}
.w7{width:345.953333pt;}
.w0{width:4608.000000pt;}
.xac{left:-595.577733pt;}
.xaa{left:-559.046933pt;}
.xa8{left:-509.536000pt;}
.xa6{left:-494.426933pt;}
.xa4{left:-436.333333pt;}
.xa2{left:-409.806533pt;}
.xa0{left:-363.275067pt;}
.x9d{left:-333.554133pt;}
.x9b{left:-293.192533pt;}
.x99{left:-247.866400pt;}
.x97{left:-227.721867pt;}
.x95{left:-199.279200pt;}
.x93{left:-167.004667pt;}
.x91{left:-127.141200pt;}
.x8f{left:-80.609733pt;}
.x8d{left:-27.053467pt;}
.x0{left:0.000000pt;}
.x6d{left:2.567333pt;}
.xb0{left:5.145333pt;}
.xae{left:6.632800pt;}
.x48{left:11.384533pt;}
.x78{left:16.150267pt;}
.x75{left:17.894000pt;}
.x1f{left:20.647067pt;}
.x53{left:49.499867pt;}
.xb2{left:84.589867pt;}
.x86{left:96.602663pt;}
.x1e{left:102.080133pt;}
.x7b{left:103.145867pt;}
.x8a{left:121.752071pt;}
.x28{left:123.731067pt;}
.x7c{left:127.848267pt;}
.x8b{left:138.127065pt;}
.x85{left:140.005200pt;}
.x52{left:142.249333pt;}
.x1d{left:144.114667pt;}
.xb1{left:169.559360pt;}
.x20{left:186.096000pt;}
.x51{left:217.668000pt;}
.x4f{left:229.726667pt;}
.x50{left:231.033333pt;}
.x12{left:234.794933pt;}
.x13{left:267.674933pt;}
.x4b{left:286.974667pt;}
.x4c{left:291.321333pt;}
.x21{left:305.569333pt;}
.x54{left:307.950533pt;}
.x4d{left:329.794667pt;}
.x14{left:351.242933pt;}
.x4e{left:362.598667pt;}
.x89{left:404.470150pt;}
.x88{left:415.034662pt;}
.x47{left:429.234667pt;}
.x22{left:430.900000pt;}
.x87{left:450.983349pt;}
.x7d{left:457.660267pt;}
.x27{left:462.909333pt;}
.x49{left:473.898667pt;}
.x4a{left:506.421333pt;}
.x23{left:561.245333pt;}
.x55{left:657.716133pt;}
.x8{left:664.242133pt;}
.x24{left:691.069333pt;}
.xb3{left:713.507867pt;}
.x15{left:781.664000pt;}
.x25{left:821.416000pt;}
.x1{left:922.781867pt;}
.x26{left:950.896000pt;}
.x2a{left:1248.380000pt;}
.x82{left:1282.084000pt;}
.x29{left:1290.728000pt;}
.x7e{left:1292.732267pt;}
.x2b{left:1330.492000pt;}
.x56{left:1380.052133pt;}
.x16{left:1416.954400pt;}
.x2c{left:1449.960000pt;}
.x17{left:1501.434400pt;}
.x2d{left:1575.293333pt;}
.x32{left:1607.306667pt;}
.x2e{left:1705.640000pt;}
.x2f{left:1835.453333pt;}
.x5a{left:1880.681600pt;}
.x5f{left:1891.696000pt;}
.x5e{left:1911.455467pt;}
.x59{left:1912.497867pt;}
.x58{left:1924.556533pt;}
.x57{left:1936.615200pt;}
.x5d{left:1947.631467pt;}
.x30{left:1965.800000pt;}
.x5c{left:2000.531600pt;}
.x61{left:2011.547867pt;}
.x18{left:2044.363467pt;}
.x31{left:2095.280000pt;}
.x5b{left:2099.267600pt;}
.x9{left:2101.526000pt;}
.x60{left:2110.283867pt;}
.xb6{left:2172.106800pt;}
.xb{left:2201.985086pt;}
.xa{left:2233.652400pt;}
.xc{left:2237.396541pt;}
.xd{left:2251.470903pt;}
.x6{left:2305.673200pt;}
.x8c{left:2317.052133pt;}
.x7{left:2329.667200pt;}
.x3c{left:2388.613333pt;}
.x81{left:2396.373200pt;}
.x62{left:2403.128133pt;}
.x19{left:2420.773467pt;}
.x3b{left:2431.213333pt;}
.xca{left:2446.529386pt;}
.x33{left:2473.666667pt;}
.x1a{left:2508.421467pt;}
.x1b{left:2560.309467pt;}
.xcb{left:2575.819600pt;}
.xb5{left:2588.918933pt;}
.x34{left:2593.133333pt;}
.xc9{left:2614.416000pt;}
.x35{left:2718.466667pt;}
.x3a{left:2750.480000pt;}
.x7f{left:2824.304267pt;}
.x36{left:2848.813333pt;}
.xb7{left:2939.886133pt;}
.xba{left:2955.855121pt;}
.xc0{left:2960.430400pt;}
.xb9{left:2967.425870pt;}
.xbb{left:2975.568249pt;}
.x37{left:2978.626667pt;}
.xb8{left:2979.583051pt;}
.xbc{left:3070.310533pt;}
.x1c{left:3078.850267pt;}
.x38{left:3108.973333pt;}
.xb4{left:3126.632800pt;}
.xbd{left:3134.750359pt;}
.xbe{left:3199.190184pt;}
.x39{left:3238.453333pt;}
.x4{left:3247.927867pt;}
.xbf{left:3263.630010pt;}
.x3{left:3288.966347pt;}
.x2{left:3292.615867pt;}
.x8e{left:3300.822533pt;}
.x90{left:3347.354000pt;}
.xc1{left:3369.845067pt;}
.xc4{left:3376.602800pt;}
.xc2{left:3382.701455pt;}
.x92{left:3387.217467pt;}
.xc3{left:3390.685948pt;}
.x94{left:3419.492000pt;}
.x96{left:3447.934667pt;}
.x98{left:3468.079200pt;}
.x9a{left:3513.405333pt;}
.xe{left:3529.625067pt;}
.x3e{left:3530.720000pt;}
.x76{left:3547.273467pt;}
.x9c{left:3554.432933pt;}
.x3d{left:3573.560000pt;}
.x9e{left:3582.238933pt;}
.x9f{left:3583.487867pt;}
.x3f{left:3615.546667pt;}
.xa1{left:3630.019333pt;}
.x77{left:3634.866667pt;}
.x80{left:3649.800267pt;}
.xa3{left:3656.546133pt;}
.x7a{left:3663.303547pt;}
.x84{left:3688.208000pt;}
.xa5{left:3696.225867pt;}
.xf{left:3714.665067pt;}
.xa7{left:3729.748800pt;}
.x40{left:3735.013333pt;}
.xa9{left:3779.259733pt;}
.x79{left:3799.109333pt;}
.xc6{left:3807.206400pt;}
.xab{left:3815.790533pt;}
.xc8{left:3833.271467pt;}
.xad{left:3856.296000pt;}
.xaf{left:3857.783467pt;}
.x41{left:3860.346667pt;}
.x83{left:3867.604000pt;}
.x46{left:3882.093333pt;}
.xc5{left:3925.908267pt;}
.x5{left:3935.527227pt;}
.x42{left:3990.693333pt;}
.xc7{left:4035.408267pt;}
.x66{left:4044.292425pt;}
.x74{left:4048.466667pt;}
.x65{left:4051.387846pt;}
.x67{left:4055.879096pt;}
.x68{left:4057.520856pt;}
.x64{left:4074.070548pt;}
.x63{left:4079.788400pt;}
.x6b{left:4087.760000pt;}
.x6a{left:4097.440000pt;}
.x43{left:4120.506667pt;}
.x6c{left:4147.293333pt;}
.x69{left:4168.621067pt;}
.x6e{left:4192.813333pt;}
.x11{left:4217.242800pt;}
.x6f{left:4238.333333pt;}
.x44{left:4250.853333pt;}
.x70{left:4283.853333pt;}
.x10{left:4323.192000pt;}
.x71{left:4329.386667pt;}
.x72{left:4374.906667pt;}
.x45{left:4380.333333pt;}
.x73{left:4420.426667pt;}
}




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