
    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_aef0cab9d6c0fd83dceeb595.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_0343df35e0c8b8daa76e7411.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_0bde29c09e866adf023cb5a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.766602;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740234;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_ac14b38002273d4584dcb821.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.768555;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_e368bd0a9a90a1436e3d93d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_d57137ac1d25c4bfdca5a466.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172363;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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;}
.m2{transform:matrix(0.180034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180034,0.000000,0.000000,0.250000,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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.940000px;}
.ls3b{letter-spacing:-0.579600px;}
.ls3a{letter-spacing:-0.544800px;}
.ls12{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.463800px;}
.lse{letter-spacing:-0.414000px;}
.ls13{letter-spacing:-0.298200px;}
.ls32{letter-spacing:-0.240600px;}
.ls18{letter-spacing:-0.214800px;}
.ls1d{letter-spacing:-0.208800px;}
.lsa{letter-spacing:-0.132600px;}
.ls11{letter-spacing:-0.115800px;}
.ls25{letter-spacing:-0.107400px;}
.ls21{letter-spacing:-0.078000px;}
.ls33{letter-spacing:-0.069600px;}
.ls1a{letter-spacing:-0.058320px;}
.ls1b{letter-spacing:-0.055440px;}
.ls41{letter-spacing:-0.041040px;}
.ls26{letter-spacing:-0.038160px;}
.ls8{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.038880px;}
.ls17{letter-spacing:0.060480px;}
.ls2b{letter-spacing:0.060600px;}
.ls10{letter-spacing:0.066000px;}
.ls38{letter-spacing:0.066960px;}
.ls2a{letter-spacing:0.067200px;}
.ls35{letter-spacing:0.093000px;}
.lsc{letter-spacing:0.150000px;}
.ls24{letter-spacing:0.174000px;}
.ls4{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.174960px;}
.ls2c{letter-spacing:0.177162px;}
.lsd{letter-spacing:0.190200px;}
.ls37{letter-spacing:0.195120px;}
.ls19{letter-spacing:0.314400px;}
.ls31{letter-spacing:0.357000px;}
.lsf{letter-spacing:0.393600px;}
.ls40{letter-spacing:0.433440px;}
.ls36{letter-spacing:0.473760px;}
.ls3e{letter-spacing:0.479520px;}
.ls3d{letter-spacing:0.599520px;}
.ls1{letter-spacing:0.617760px;}
.ls42{letter-spacing:0.660000px;}
.ls34{letter-spacing:0.792000px;}
.ls39{letter-spacing:0.858000px;}
.ls1c{letter-spacing:0.906000px;}
.ls1f{letter-spacing:2.106720px;}
.ls5{letter-spacing:2.334240px;}
.ls3{letter-spacing:3.054240px;}
.ls30{letter-spacing:3.774240px;}
.ls2{letter-spacing:4.494240px;}
.ls1e{letter-spacing:5.706720px;}
.ls7{letter-spacing:8.814240px;}
.ls20{letter-spacing:10.974240px;}
.ls3f{letter-spacing:12.186720px;}
.ls2f{letter-spacing:12.414240px;}
.ls29{letter-spacing:14.346720px;}
.ls16{letter-spacing:14.574240px;}
.ls23{letter-spacing:15.786720px;}
.ls22{letter-spacing:17.946720px;}
.ls27{letter-spacing:20.106720px;}
.ls28{letter-spacing:20.826720px;}
.ls14{letter-spacing:21.546720px;}
.ls2d{letter-spacing:22.986720px;}
.ls2e{letter-spacing:24.426720px;}
.ls15{letter-spacing:26.586720px;}
.ls0{letter-spacing:38.106720px;}
.ls3c{letter-spacing:42.426720px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsd{word-spacing:-14.411760px;}
.ws1a{word-spacing:-14.165760px;}
.ws15{word-spacing:-13.862760px;}
.wsa{word-spacing:-13.820160px;}
.ws17{word-spacing:-13.598760px;}
.ws13{word-spacing:-13.572960px;}
.ws6{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.467600px;}
.ws19{word-spacing:-13.464720px;}
.wsc{word-spacing:-13.450320px;}
.wsb{word-spacing:-13.447440px;}
.ws16{word-spacing:-13.436160px;}
.wsf{word-spacing:-13.427760px;}
.ws11{word-spacing:-13.398360px;}
.ws7{word-spacing:-13.389960px;}
.wse{word-spacing:-13.296960px;}
.ws9{word-spacing:-13.290960px;}
.ws18{word-spacing:-10.902240px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
.ws14{word-spacing:174.693848px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-214.738560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-160.046400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._22{margin-left:-100.079760px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._23{margin-left:-53.743680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-32.468640px;}
._28{margin-left:-4.827600px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2a{width:1.149120px;}
._34{width:2.213280px;}
._2d{width:3.266880px;}
._31{width:4.502880px;}
._35{width:5.536800px;}
._33{width:7.148880px;}
._32{width:8.825760px;}
._2f{width:9.865440px;}
._2e{width:11.023200px;}
._30{width:12.242160px;}
._37{width:14.760720px;}
._38{width:15.876480px;}
._36{width:17.629200px;}
._3b{width:19.063440px;}
._3c{width:20.530080px;}
._4f{width:24.399840px;}
._3a{width:25.487760px;}
._39{width:26.712720px;}
._46{width:27.907920px;}
._51{width:29.054160px;}
._44{width:31.121280px;}
._43{width:33.226560px;}
._3d{width:35.138880px;}
._4d{width:43.140471px;}
._50{width:45.463680px;}
._29{width:48.741840px;}
._3f{width:49.899600px;}
._3e{width:55.159200px;}
._2b{width:56.594160px;}
._2c{width:58.116720px;}
._4c{width:59.645478px;}
._4e{width:72.288799px;}
._45{width:73.624320px;}
._4b{width:81.160017px;}
._49{width:170.121666px;}
._4a{width:178.088698px;}
._48{width:188.988480px;}
._40{width:294.361920px;}
._41{width:658.614960px;}
._42{width:759.479520px;}
._47{width:990.599520px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs8{font-size:40.436880px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:47.155394px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y14e{bottom:-12.060000px;}
.yfb{bottom:-11.700000px;}
.yf6{bottom:-11.520000px;}
.y139{bottom:-10.620000px;}
.ycc{bottom:-10.260000px;}
.yca{bottom:-9.900000px;}
.y105{bottom:-8.640000px;}
.yf9{bottom:-8.325000px;}
.yf4{bottom:-8.280000px;}
.ycf{bottom:-7.380000px;}
.y126{bottom:-7.020000px;}
.y0{bottom:0.000000px;}
.y117{bottom:6.438825px;}
.yb8{bottom:6.480000px;}
.y95{bottom:6.660000px;}
.yd5{bottom:6.690000px;}
.y123{bottom:7.550748px;}
.yae{bottom:12.240000px;}
.ybd{bottom:15.480000px;}
.yad{bottom:16.740000px;}
.yaa{bottom:17.100000px;}
.y10e{bottom:17.590448px;}
.ybc{bottom:19.260000px;}
.ya4{bottom:21.240000px;}
.y122{bottom:21.499213px;}
.yaf{bottom:22.320000px;}
.ybe{bottom:23.400000px;}
.ya9{bottom:23.760000px;}
.ya6{bottom:24.480000px;}
.ya8{bottom:27.540000px;}
.y97{bottom:27.720000px;}
.yac{bottom:37.800000px;}
.yb4{bottom:38.160000px;}
.ybb{bottom:40.320000px;}
.y10f{bottom:40.435388px;}
.ya3{bottom:42.345000px;}
.ya5{bottom:45.585000px;}
.yb2{bottom:48.780000px;}
.yb6{bottom:48.810000px;}
.y121{bottom:49.362858px;}
.yb3{bottom:59.220000px;}
.y6{bottom:59.760000px;}
.y110{bottom:63.184670px;}
.y120{bottom:63.311716px;}
.ya2{bottom:63.405000px;}
.yb1{bottom:69.840000px;}
.y11f{bottom:77.227814px;}
.y111{bottom:86.061059px;}
.y18b{bottom:90.000000px;}
.y11e{bottom:91.175361px;}
.y10c{bottom:91.620000px;}
.y72{bottom:95.220000px;}
.y15b{bottom:98.100000px;}
.y96{bottom:99.000000px;}
.y2f{bottom:100.620000px;}
.y63{bottom:104.220000px;}
.y11d{bottom:105.124218px;}
.y112{bottom:108.809031px;}
.y18a{bottom:110.880000px;}
.y10b{bottom:112.680000px;}
.y15a{bottom:113.220000px;}
.yd7{bottom:115.200000px;}
.y71{bottom:116.280000px;}
.y1a7{bottom:117.540000px;}
.y11c{bottom:119.071765px;}
.y2e{bottom:121.680000px;}
.y62{bottom:125.280000px;}
.yd6{bottom:129.600000px;}
.y113{bottom:131.652661px;}
.y189{bottom:131.940000px;}
.y11b{bottom:132.989174px;}
.y10a{bottom:133.740000px;}
.y1a6{bottom:134.280000px;}
.y159{bottom:135.000000px;}
.y70{bottom:137.340000px;}
.y94{bottom:141.840000px;}
.y2d{bottom:142.740000px;}
.y61{bottom:146.340000px;}
.yd4{bottom:150.660000px;}
.y188{bottom:153.030000px;}
.y114{bottom:154.400633px;}
.y109{bottom:154.830000px;}
.y1a5{bottom:155.370000px;}
.y6f{bottom:158.430000px;}
.y11a{bottom:160.886889px;}
.y158{bottom:163.470000px;}
.y2c{bottom:163.830000px;}
.y60{bottom:167.430000px;}
.y93{bottom:170.310000px;}
.yd3{bottom:171.750000px;}
.y187{bottom:174.090000px;}
.y119{bottom:174.829195px;}
.y108{bottom:175.890000px;}
.y1a4{bottom:176.430000px;}
.y115{bottom:177.279642px;}
.y6e{bottom:179.490000px;}
.y157{bottom:184.530000px;}
.y2b{bottom:184.890000px;}
.y5f{bottom:188.490000px;}
.y118{bottom:188.745293px;}
.y92{bottom:191.370000px;}
.yd2{bottom:192.810000px;}
.y186{bottom:195.150000px;}
.y107{bottom:196.950000px;}
.y1a3{bottom:197.490000px;}
.y116{bottom:200.027615px;}
.y6d{bottom:200.550000px;}
.y156{bottom:205.590000px;}
.y2a{bottom:205.950000px;}
.y5e{bottom:209.550000px;}
.y91{bottom:212.430000px;}
.yd1{bottom:213.870000px;}
.y185{bottom:216.210000px;}
.y106{bottom:218.010000px;}
.y1a2{bottom:218.550000px;}
.y6c{bottom:221.610000px;}
.y29{bottom:227.010000px;}
.y5d{bottom:230.610000px;}
.y104{bottom:232.410000px;}
.y90{bottom:233.490000px;}
.yd0{bottom:234.930000px;}
.y155{bottom:235.650000px;}
.y184{bottom:237.270000px;}
.y1a1{bottom:239.610000px;}
.y103{bottom:241.590000px;}
.y6b{bottom:242.670000px;}
.yce{bottom:245.550000px;}
.y102{bottom:247.710000px;}
.y28{bottom:248.070000px;}
.y5c{bottom:251.670000px;}
.ycd{bottom:252.570000px;}
.y8f{bottom:254.550000px;}
.y154{bottom:256.710000px;}
.y183{bottom:258.330000px;}
.y1a0{bottom:260.670000px;}
.y101{bottom:268.770000px;}
.y27{bottom:269.130000px;}
.y5b{bottom:272.730000px;}
.ycb{bottom:273.630000px;}
.y8e{bottom:275.610000px;}
.y153{bottom:277.770000px;}
.y182{bottom:279.390000px;}
.y19f{bottom:281.730000px;}
.yc9{bottom:284.250000px;}
.y100{bottom:289.830000px;}
.y26{bottom:290.190000px;}
.y5a{bottom:293.790000px;}
.yc8{bottom:295.410000px;}
.y8d{bottom:296.670000px;}
.y152{bottom:298.830000px;}
.y181{bottom:300.450000px;}
.y19e{bottom:302.790000px;}
.yff{bottom:310.890000px;}
.y25{bottom:311.250000px;}
.y59{bottom:314.850000px;}
.yc7{bottom:316.470000px;}
.y8c{bottom:317.730000px;}
.y151{bottom:319.890000px;}
.y180{bottom:321.510000px;}
.y19d{bottom:323.850000px;}
.yfe{bottom:331.950000px;}
.y24{bottom:332.310000px;}
.y58{bottom:335.910000px;}
.yc6{bottom:337.530000px;}
.y8b{bottom:338.790000px;}
.y150{bottom:340.950000px;}
.y17f{bottom:342.570000px;}
.y19c{bottom:344.910000px;}
.yfd{bottom:353.010000px;}
.y23{bottom:353.370000px;}
.y57{bottom:356.970000px;}
.yc5{bottom:358.590000px;}
.y8a{bottom:359.850000px;}
.y14f{bottom:362.010000px;}
.y17e{bottom:363.630000px;}
.y19b{bottom:365.970000px;}
.yfc{bottom:374.070000px;}
.y22{bottom:374.430000px;}
.y14d{bottom:376.410000px;}
.y56{bottom:378.030000px;}
.yc4{bottom:379.650000px;}
.y89{bottom:380.910000px;}
.y14c{bottom:381.990000px;}
.y17d{bottom:384.690000px;}
.y14b{bottom:385.770000px;}
.y19a{bottom:387.030000px;}
.yfa{bottom:395.130000px;}
.y21{bottom:395.310000px;}
.y55{bottom:399.090000px;}
.yc3{bottom:400.755000px;}
.y88{bottom:402.015000px;}
.yf8{bottom:404.175000px;}
.y17c{bottom:405.795000px;}
.y199{bottom:408.135000px;}
.yf7{bottom:410.295000px;}
.y14a{bottom:413.355000px;}
.y20{bottom:416.415000px;}
.y149{bottom:417.135000px;}
.y54{bottom:420.195000px;}
.yc2{bottom:421.635000px;}
.y87{bottom:423.075000px;}
.y17b{bottom:426.855000px;}
.y198{bottom:429.195000px;}
.yf5{bottom:431.355000px;}
.y1f{bottom:437.475000px;}
.y148{bottom:438.195000px;}
.yf3{bottom:440.535000px;}
.y53{bottom:441.255000px;}
.yc1{bottom:442.695000px;}
.y86{bottom:444.135000px;}
.yf2{bottom:446.655000px;}
.y17a{bottom:447.915000px;}
.y197{bottom:450.255000px;}
.y1e{bottom:458.535000px;}
.y147{bottom:459.255000px;}
.y52{bottom:462.315000px;}
.yc0{bottom:463.755000px;}
.y85{bottom:465.195000px;}
.yf1{bottom:467.715000px;}
.y179{bottom:468.975000px;}
.y196{bottom:471.315000px;}
.y1d{bottom:479.595000px;}
.y146{bottom:480.315000px;}
.y51{bottom:483.375000px;}
.ybf{bottom:484.815000px;}
.y84{bottom:486.255000px;}
.yf0{bottom:488.775000px;}
.y178{bottom:490.035000px;}
.y195{bottom:492.375000px;}
.yba{bottom:500.115000px;}
.y1c{bottom:500.655000px;}
.y145{bottom:501.375000px;}
.y50{bottom:504.435000px;}
.y83{bottom:507.315000px;}
.yef{bottom:509.835000px;}
.y177{bottom:511.095000px;}
.y194{bottom:513.435000px;}
.y144{bottom:522.255000px;}
.y4f{bottom:525.495000px;}
.y82{bottom:528.375000px;}
.yee{bottom:530.895000px;}
.y176{bottom:532.155000px;}
.y193{bottom:534.495000px;}
.y143{bottom:543.315000px;}
.y1b{bottom:545.295000px;}
.y4e{bottom:546.555000px;}
.y81{bottom:549.435000px;}
.yed{bottom:551.955000px;}
.y175{bottom:553.215000px;}
.yb9{bottom:555.555000px;}
.y142{bottom:564.375000px;}
.y4d{bottom:567.615000px;}
.y80{bottom:570.495000px;}
.yec{bottom:573.015000px;}
.y174{bottom:574.275000px;}
.y1a{bottom:575.175000px;}
.y192{bottom:576.615000px;}
.yb7{bottom:577.515000px;}
.y141{bottom:585.435000px;}
.y4c{bottom:588.675000px;}
.y7f{bottom:591.555000px;}
.y173{bottom:595.335000px;}
.y19{bottom:596.235000px;}
.y191{bottom:597.675000px;}
.yeb{bottom:600.735000px;}
.y140{bottom:606.495000px;}
.y4b{bottom:609.735000px;}
.y7e{bottom:612.615000px;}
.y172{bottom:616.395000px;}
.y18{bottom:617.295000px;}
.y190{bottom:618.735000px;}
.yb5{bottom:620.355000px;}
.yea{bottom:621.795000px;}
.y13f{bottom:627.555000px;}
.y4a{bottom:630.795000px;}
.y7d{bottom:633.675000px;}
.y171{bottom:637.455000px;}
.y17{bottom:638.355000px;}
.y18f{bottom:639.795000px;}
.ye9{bottom:642.855000px;}
.y13e{bottom:648.615000px;}
.y49{bottom:651.885000px;}
.y7c{bottom:654.765000px;}
.y170{bottom:658.545000px;}
.y16{bottom:659.445000px;}
.y18e{bottom:660.885000px;}
.ye8{bottom:663.945000px;}
.y13d{bottom:669.705000px;}
.y48{bottom:672.945000px;}
.y7b{bottom:675.825000px;}
.y16f{bottom:679.605000px;}
.y15{bottom:680.505000px;}
.y18d{bottom:681.945000px;}
.yb0{bottom:684.285000px;}
.ye7{bottom:685.005000px;}
.y13c{bottom:690.765000px;}
.y47{bottom:694.005000px;}
.y7a{bottom:696.885000px;}
.y16e{bottom:700.665000px;}
.y14{bottom:701.565000px;}
.y18c{bottom:703.005000px;}
.ye6{bottom:706.065000px;}
.y10d{bottom:709.289919px;}
.y6a{bottom:715.065000px;}
.y79{bottom:717.945000px;}
.y13b{bottom:718.305000px;}
.y16d{bottom:721.725000px;}
.y13a{bottom:722.085000px;}
.y13{bottom:722.625000px;}
.y46{bottom:724.065000px;}
.ye5{bottom:727.125000px;}
.y69{bottom:736.125000px;}
.y78{bottom:739.005000px;}
.y16c{bottom:742.785000px;}
.y12{bottom:743.685000px;}
.y45{bottom:745.125000px;}
.ye4{bottom:748.005000px;}
.y138{bottom:749.445000px;}
.y68{bottom:757.005000px;}
.y137{bottom:759.885000px;}
.y77{bottom:760.065000px;}
.y16b{bottom:763.845000px;}
.y11{bottom:764.745000px;}
.y44{bottom:766.005000px;}
.ye3{bottom:769.065000px;}
.yab{bottom:769.245000px;}
.y67{bottom:778.065000px;}
.y76{bottom:781.125000px;}
.y16a{bottom:784.905000px;}
.y10{bottom:785.805000px;}
.y43{bottom:787.065000px;}
.y136{bottom:789.945000px;}
.ye2{bottom:790.125000px;}
.y66{bottom:799.125000px;}
.y75{bottom:802.185000px;}
.y169{bottom:805.965000px;}
.yf{bottom:806.865000px;}
.y42{bottom:808.125000px;}
.y135{bottom:811.005000px;}
.ye1{bottom:811.185000px;}
.y65{bottom:820.185000px;}
.ya7{bottom:822.345000px;}
.y74{bottom:823.245000px;}
.y168{bottom:827.025000px;}
.ye{bottom:827.925000px;}
.y41{bottom:829.185000px;}
.y134{bottom:832.065000px;}
.ye0{bottom:832.245000px;}
.y73{bottom:840.165000px;}
.y64{bottom:841.245000px;}
.y167{bottom:848.085000px;}
.y40{bottom:850.245000px;}
.yd{bottom:851.325000px;}
.y133{bottom:853.125000px;}
.ydf{bottom:853.305000px;}
.ya1{bottom:865.185000px;}
.y166{bottom:869.145000px;}
.y3f{bottom:871.305000px;}
.y132{bottom:874.185000px;}
.yde{bottom:874.365000px;}
.yc{bottom:877.425000px;}
.y165{bottom:890.205000px;}
.y3e{bottom:892.365000px;}
.yb{bottom:894.165000px;}
.y131{bottom:895.245000px;}
.ydd{bottom:895.425000px;}
.y164{bottom:911.310000px;}
.y3d{bottom:913.470000px;}
.y130{bottom:916.350000px;}
.ya{bottom:916.530000px;}
.y163{bottom:932.370000px;}
.y3c{bottom:934.530000px;}
.y12f{bottom:937.410000px;}
.ydc{bottom:937.590000px;}
.y9{bottom:941.730000px;}
.ya0{bottom:943.710000px;}
.y162{bottom:953.430000px;}
.y3b{bottom:955.590000px;}
.y12e{bottom:958.470000px;}
.ydb{bottom:967.650000px;}
.y9f{bottom:972.150000px;}
.y12d{bottom:972.870000px;}
.y161{bottom:974.490000px;}
.y8{bottom:975.390000px;}
.y3a{bottom:976.650000px;}
.yda{bottom:988.710000px;}
.y9e{bottom:993.210000px;}
.y12c{bottom:993.930000px;}
.y160{bottom:995.550000px;}
.y39{bottom:997.710000px;}
.y7{bottom:1009.050000px;}
.yd9{bottom:1009.770000px;}
.y9d{bottom:1014.270000px;}
.y12b{bottom:1014.990000px;}
.y15f{bottom:1016.610000px;}
.y38{bottom:1018.770000px;}
.y9c{bottom:1029.390000px;}
.yd8{bottom:1030.830000px;}
.y12a{bottom:1036.050000px;}
.y15e{bottom:1037.670000px;}
.y37{bottom:1039.830000px;}
.y5{bottom:1049.190000px;}
.y9b{bottom:1051.350000px;}
.y15d{bottom:1052.790000px;}
.y129{bottom:1057.110000px;}
.y36{bottom:1060.890000px;}
.y9a{bottom:1073.130000px;}
.y15c{bottom:1074.570000px;}
.y128{bottom:1078.170000px;}
.y4{bottom:1081.410000px;}
.y35{bottom:1081.950000px;}
.y99{bottom:1094.910000px;}
.y127{bottom:1099.230000px;}
.y34{bottom:1103.010000px;}
.y125{bottom:1110.030000px;}
.y3{bottom:1113.630000px;}
.y98{bottom:1116.690000px;}
.y124{bottom:1117.410000px;}
.y33{bottom:1124.070000px;}
.y32{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y31{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y30{bottom:1193.220000px;}
.h21{height:2.340000px;}
.h18{height:2.700000px;}
.h17{height:2.880000px;}
.h1f{height:3.780000px;}
.h14{height:4.140000px;}
.h13{height:4.500000px;}
.h19{height:5.760000px;}
.h16{height:6.120000px;}
.h15{height:7.020000px;}
.h1e{height:7.380000px;}
.h20{height:20.880000px;}
.hc{height:21.060000px;}
.h9{height:21.096000px;}
.h7{height:38.671172px;}
.h1d{height:40.219689px;}
.he{height:41.940000px;}
.ha{height:42.120000px;}
.hb{height:42.156000px;}
.h1a{height:45.140977px;}
.h1c{height:46.902118px;}
.hf{height:52.200000px;}
.h12{height:54.720000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h11{height:63.216000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hd{height:77.796000px;}
.h10{height:84.240000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h1b{height:211.493327px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:1.440015px;}
.w3{width:45.000000px;}
.w1b{width:47.340000px;}
.w17{width:60.696000px;}
.w11{width:61.020000px;}
.w27{width:65.520000px;}
.we{width:68.256000px;}
.w14{width:68.436000px;}
.w24{width:71.496000px;}
.w1d{width:72.180000px;}
.w1e{width:72.216000px;}
.w1f{width:72.360000px;}
.w1c{width:72.396000px;}
.wc{width:73.296000px;}
.wa{width:75.240000px;}
.w10{width:75.276000px;}
.w18{width:75.600000px;}
.w21{width:79.020000px;}
.w13{width:82.800000px;}
.w19{width:82.836000px;}
.wd{width:83.160000px;}
.wf{width:85.860000px;}
.w23{width:86.580000px;}
.w22{width:86.616000px;}
.w7{width:127.476000px;}
.w28{width:138.816000px;}
.w20{width:144.576000px;}
.w26{width:157.530000px;}
.w25{width:165.630000px;}
.w9{width:171.210000px;}
.w5{width:180.390000px;}
.w12{width:219.135000px;}
.w15{width:301.935000px;}
.w8{width:305.130000px;}
.w16{width:370.365000px;}
.w1a{width:383.392836px;}
.w4{width:412.635000px;}
.w6{width:458.355000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x11{left:-2.880000px;}
.x0{left:0.000000px;}
.x22{left:4.153559px;}
.xb{left:7.560000px;}
.x23{left:33.342710px;}
.xd{left:46.254000px;}
.x6{left:53.999987px;}
.x8{left:64.799987px;}
.x31{left:80.999987px;}
.x1a{left:86.075987px;}
.x7{left:108.035987px;}
.xa{left:126.936000px;}
.xe{left:144.036000px;}
.x20{left:162.029987px;}
.x5{left:173.189987px;}
.x12{left:184.890000px;}
.x25{left:206.130000px;}
.x2a{left:212.430000px;}
.x21{left:254.114980px;}
.x13{left:260.130000px;}
.x14{left:261.570000px;}
.xf{left:272.235000px;}
.x3{left:286.634987px;}
.x24{left:288.556672px;}
.x1b{left:302.114987px;}
.x1e{left:322.095000px;}
.x26{left:325.875000px;}
.x15{left:334.875000px;}
.x2{left:350.534987px;}
.x2b{left:357.015000px;}
.x1f{left:397.695000px;}
.x16{left:418.035000px;}
.x4{left:419.114987px;}
.x2c{left:436.035000px;}
.x27{left:470.265000px;}
.x30{left:474.765000px;}
.x1{left:479.264987px;}
.x1c{left:480.525000px;}
.x17{left:486.285000px;}
.x2f{left:492.945000px;}
.x2d{left:522.645000px;}
.x28{left:542.445000px;}
.x1d{left:563.325000px;}
.x18{left:572.145000px;}
.x10{left:578.085000px;}
.xc{left:586.005000px;}
.x2e{left:609.225000px;}
.x29{left:614.805000px;}
.x19{left:647.430000px;}
.x9{left:649.409987px;}
.x32{left:838.439987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.ls3b{letter-spacing:-0.515200pt;}
.ls3a{letter-spacing:-0.484267pt;}
.ls12{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.412267pt;}
.lse{letter-spacing:-0.368000pt;}
.ls13{letter-spacing:-0.265067pt;}
.ls32{letter-spacing:-0.213867pt;}
.ls18{letter-spacing:-0.190933pt;}
.ls1d{letter-spacing:-0.185600pt;}
.lsa{letter-spacing:-0.117867pt;}
.ls11{letter-spacing:-0.102933pt;}
.ls25{letter-spacing:-0.095467pt;}
.ls21{letter-spacing:-0.069333pt;}
.ls33{letter-spacing:-0.061867pt;}
.ls1a{letter-spacing:-0.051840pt;}
.ls1b{letter-spacing:-0.049280pt;}
.ls41{letter-spacing:-0.036480pt;}
.ls26{letter-spacing:-0.033920pt;}
.ls8{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.034560pt;}
.ls17{letter-spacing:0.053760pt;}
.ls2b{letter-spacing:0.053867pt;}
.ls10{letter-spacing:0.058667pt;}
.ls38{letter-spacing:0.059520pt;}
.ls2a{letter-spacing:0.059733pt;}
.ls35{letter-spacing:0.082667pt;}
.lsc{letter-spacing:0.133333pt;}
.ls24{letter-spacing:0.154667pt;}
.ls4{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.155520pt;}
.ls2c{letter-spacing:0.157477pt;}
.lsd{letter-spacing:0.169067pt;}
.ls37{letter-spacing:0.173440pt;}
.ls19{letter-spacing:0.279467pt;}
.ls31{letter-spacing:0.317333pt;}
.lsf{letter-spacing:0.349867pt;}
.ls40{letter-spacing:0.385280pt;}
.ls36{letter-spacing:0.421120pt;}
.ls3e{letter-spacing:0.426240pt;}
.ls3d{letter-spacing:0.532907pt;}
.ls1{letter-spacing:0.549120pt;}
.ls42{letter-spacing:0.586667pt;}
.ls34{letter-spacing:0.704000pt;}
.ls39{letter-spacing:0.762667pt;}
.ls1c{letter-spacing:0.805333pt;}
.ls1f{letter-spacing:1.872640pt;}
.ls5{letter-spacing:2.074880pt;}
.ls3{letter-spacing:2.714880pt;}
.ls30{letter-spacing:3.354880pt;}
.ls2{letter-spacing:3.994880pt;}
.ls1e{letter-spacing:5.072640pt;}
.ls7{letter-spacing:7.834880pt;}
.ls20{letter-spacing:9.754880pt;}
.ls3f{letter-spacing:10.832640pt;}
.ls2f{letter-spacing:11.034880pt;}
.ls29{letter-spacing:12.752640pt;}
.ls16{letter-spacing:12.954880pt;}
.ls23{letter-spacing:14.032640pt;}
.ls22{letter-spacing:15.952640pt;}
.ls27{letter-spacing:17.872640pt;}
.ls28{letter-spacing:18.512640pt;}
.ls14{letter-spacing:19.152640pt;}
.ls2d{letter-spacing:20.432640pt;}
.ls2e{letter-spacing:21.712640pt;}
.ls15{letter-spacing:23.632640pt;}
.ls0{letter-spacing:33.872640pt;}
.ls3c{letter-spacing:37.712640pt;}
.ws10{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsd{word-spacing:-12.810453pt;}
.ws1a{word-spacing:-12.591787pt;}
.ws15{word-spacing:-12.322453pt;}
.wsa{word-spacing:-12.284587pt;}
.ws17{word-spacing:-12.087787pt;}
.ws13{word-spacing:-12.064853pt;}
.ws6{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.971200pt;}
.ws19{word-spacing:-11.968640pt;}
.wsc{word-spacing:-11.955840pt;}
.wsb{word-spacing:-11.953280pt;}
.ws16{word-spacing:-11.943253pt;}
.wsf{word-spacing:-11.935787pt;}
.ws11{word-spacing:-11.909653pt;}
.ws7{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.819520pt;}
.ws9{word-spacing:-11.814187pt;}
.ws18{word-spacing:-9.690880pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
.ws14{word-spacing:155.283421pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-190.878720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.263467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._22{margin-left:-88.959787pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._23{margin-left:-47.772160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.861013pt;}
._28{margin-left:-4.291200pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2a{width:1.021440pt;}
._34{width:1.967360pt;}
._2d{width:2.903893pt;}
._31{width:4.002560pt;}
._35{width:4.921600pt;}
._33{width:6.354560pt;}
._32{width:7.845120pt;}
._2f{width:8.769280pt;}
._2e{width:9.798400pt;}
._30{width:10.881920pt;}
._37{width:13.120640pt;}
._38{width:14.112427pt;}
._36{width:15.670400pt;}
._3b{width:16.945280pt;}
._3c{width:18.248960pt;}
._4f{width:21.688747pt;}
._3a{width:22.655787pt;}
._39{width:23.744640pt;}
._46{width:24.807040pt;}
._51{width:25.825920pt;}
._44{width:27.663360pt;}
._43{width:29.534720pt;}
._3d{width:31.234560pt;}
._4d{width:38.347085pt;}
._50{width:40.412160pt;}
._29{width:43.326080pt;}
._3f{width:44.355200pt;}
._3e{width:49.030400pt;}
._2b{width:50.305920pt;}
._2c{width:51.659307pt;}
._4c{width:53.018203pt;}
._4e{width:64.256710pt;}
._45{width:65.443840pt;}
._4b{width:72.142237pt;}
._49{width:151.219259pt;}
._4a{width:158.301065pt;}
._48{width:167.989760pt;}
._40{width:261.655040pt;}
._41{width:585.435520pt;}
._42{width:675.092907pt;}
._47{width:880.532907pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:35.943893pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:41.915905pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y14e{bottom:-10.720000pt;}
.yfb{bottom:-10.400000pt;}
.yf6{bottom:-10.240000pt;}
.y139{bottom:-9.440000pt;}
.ycc{bottom:-9.120000pt;}
.yca{bottom:-8.800000pt;}
.y105{bottom:-7.680000pt;}
.yf9{bottom:-7.400000pt;}
.yf4{bottom:-7.360000pt;}
.ycf{bottom:-6.560000pt;}
.y126{bottom:-6.240000pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:5.723400pt;}
.yb8{bottom:5.760000pt;}
.y95{bottom:5.920000pt;}
.yd5{bottom:5.946667pt;}
.y123{bottom:6.711776pt;}
.yae{bottom:10.880000pt;}
.ybd{bottom:13.760000pt;}
.yad{bottom:14.880000pt;}
.yaa{bottom:15.200000pt;}
.y10e{bottom:15.635954pt;}
.ybc{bottom:17.120000pt;}
.ya4{bottom:18.880000pt;}
.y122{bottom:19.110411pt;}
.yaf{bottom:19.840000pt;}
.ybe{bottom:20.800000pt;}
.ya9{bottom:21.120000pt;}
.ya6{bottom:21.760000pt;}
.ya8{bottom:24.480000pt;}
.y97{bottom:24.640000pt;}
.yac{bottom:33.600000pt;}
.yb4{bottom:33.920000pt;}
.ybb{bottom:35.840000pt;}
.y10f{bottom:35.942567pt;}
.ya3{bottom:37.640000pt;}
.ya5{bottom:40.520000pt;}
.yb2{bottom:43.360000pt;}
.yb6{bottom:43.386667pt;}
.y121{bottom:43.878096pt;}
.yb3{bottom:52.640000pt;}
.y6{bottom:53.120000pt;}
.y110{bottom:56.164151pt;}
.y120{bottom:56.277080pt;}
.ya2{bottom:56.360000pt;}
.yb1{bottom:62.080000pt;}
.y11f{bottom:68.646946pt;}
.y111{bottom:76.498719pt;}
.y18b{bottom:80.000000pt;}
.y11e{bottom:81.044765pt;}
.y10c{bottom:81.440000pt;}
.y72{bottom:84.640000pt;}
.y15b{bottom:87.200000pt;}
.y96{bottom:88.000000pt;}
.y2f{bottom:89.440000pt;}
.y63{bottom:92.640000pt;}
.y11d{bottom:93.443750pt;}
.y112{bottom:96.719139pt;}
.y18a{bottom:98.560000pt;}
.y10b{bottom:100.160000pt;}
.y15a{bottom:100.640000pt;}
.yd7{bottom:102.400000pt;}
.y71{bottom:103.360000pt;}
.y1a7{bottom:104.480000pt;}
.y11c{bottom:105.841569pt;}
.y2e{bottom:108.160000pt;}
.y62{bottom:111.360000pt;}
.yd6{bottom:115.200000pt;}
.y113{bottom:117.024588pt;}
.y189{bottom:117.280000pt;}
.y11b{bottom:118.212599pt;}
.y10a{bottom:118.880000pt;}
.y1a6{bottom:119.360000pt;}
.y159{bottom:120.000000pt;}
.y70{bottom:122.080000pt;}
.y94{bottom:126.080000pt;}
.y2d{bottom:126.880000pt;}
.y61{bottom:130.080000pt;}
.yd4{bottom:133.920000pt;}
.y188{bottom:136.026667pt;}
.y114{bottom:137.245007pt;}
.y109{bottom:137.626667pt;}
.y1a5{bottom:138.106667pt;}
.y6f{bottom:140.826667pt;}
.y11a{bottom:143.010568pt;}
.y158{bottom:145.306667pt;}
.y2c{bottom:145.626667pt;}
.y60{bottom:148.826667pt;}
.y93{bottom:151.386667pt;}
.yd3{bottom:152.666667pt;}
.y187{bottom:154.746667pt;}
.y119{bottom:155.403729pt;}
.y108{bottom:156.346667pt;}
.y1a4{bottom:156.826667pt;}
.y115{bottom:157.581904pt;}
.y6e{bottom:159.546667pt;}
.y157{bottom:164.026667pt;}
.y2b{bottom:164.346667pt;}
.y5f{bottom:167.546667pt;}
.y118{bottom:167.773594pt;}
.y92{bottom:170.106667pt;}
.yd2{bottom:171.386667pt;}
.y186{bottom:173.466667pt;}
.y107{bottom:175.066667pt;}
.y1a3{bottom:175.546667pt;}
.y116{bottom:177.802324pt;}
.y6d{bottom:178.266667pt;}
.y156{bottom:182.746667pt;}
.y2a{bottom:183.066667pt;}
.y5e{bottom:186.266667pt;}
.y91{bottom:188.826667pt;}
.yd1{bottom:190.106667pt;}
.y185{bottom:192.186667pt;}
.y106{bottom:193.786667pt;}
.y1a2{bottom:194.266667pt;}
.y6c{bottom:196.986667pt;}
.y29{bottom:201.786667pt;}
.y5d{bottom:204.986667pt;}
.y104{bottom:206.586667pt;}
.y90{bottom:207.546667pt;}
.yd0{bottom:208.826667pt;}
.y155{bottom:209.466667pt;}
.y184{bottom:210.906667pt;}
.y1a1{bottom:212.986667pt;}
.y103{bottom:214.746667pt;}
.y6b{bottom:215.706667pt;}
.yce{bottom:218.266667pt;}
.y102{bottom:220.186667pt;}
.y28{bottom:220.506667pt;}
.y5c{bottom:223.706667pt;}
.ycd{bottom:224.506667pt;}
.y8f{bottom:226.266667pt;}
.y154{bottom:228.186667pt;}
.y183{bottom:229.626667pt;}
.y1a0{bottom:231.706667pt;}
.y101{bottom:238.906667pt;}
.y27{bottom:239.226667pt;}
.y5b{bottom:242.426667pt;}
.ycb{bottom:243.226667pt;}
.y8e{bottom:244.986667pt;}
.y153{bottom:246.906667pt;}
.y182{bottom:248.346667pt;}
.y19f{bottom:250.426667pt;}
.yc9{bottom:252.666667pt;}
.y100{bottom:257.626667pt;}
.y26{bottom:257.946667pt;}
.y5a{bottom:261.146667pt;}
.yc8{bottom:262.586667pt;}
.y8d{bottom:263.706667pt;}
.y152{bottom:265.626667pt;}
.y181{bottom:267.066667pt;}
.y19e{bottom:269.146667pt;}
.yff{bottom:276.346667pt;}
.y25{bottom:276.666667pt;}
.y59{bottom:279.866667pt;}
.yc7{bottom:281.306667pt;}
.y8c{bottom:282.426667pt;}
.y151{bottom:284.346667pt;}
.y180{bottom:285.786667pt;}
.y19d{bottom:287.866667pt;}
.yfe{bottom:295.066667pt;}
.y24{bottom:295.386667pt;}
.y58{bottom:298.586667pt;}
.yc6{bottom:300.026667pt;}
.y8b{bottom:301.146667pt;}
.y150{bottom:303.066667pt;}
.y17f{bottom:304.506667pt;}
.y19c{bottom:306.586667pt;}
.yfd{bottom:313.786667pt;}
.y23{bottom:314.106667pt;}
.y57{bottom:317.306667pt;}
.yc5{bottom:318.746667pt;}
.y8a{bottom:319.866667pt;}
.y14f{bottom:321.786667pt;}
.y17e{bottom:323.226667pt;}
.y19b{bottom:325.306667pt;}
.yfc{bottom:332.506667pt;}
.y22{bottom:332.826667pt;}
.y14d{bottom:334.586667pt;}
.y56{bottom:336.026667pt;}
.yc4{bottom:337.466667pt;}
.y89{bottom:338.586667pt;}
.y14c{bottom:339.546667pt;}
.y17d{bottom:341.946667pt;}
.y14b{bottom:342.906667pt;}
.y19a{bottom:344.026667pt;}
.yfa{bottom:351.226667pt;}
.y21{bottom:351.386667pt;}
.y55{bottom:354.746667pt;}
.yc3{bottom:356.226667pt;}
.y88{bottom:357.346667pt;}
.yf8{bottom:359.266667pt;}
.y17c{bottom:360.706667pt;}
.y199{bottom:362.786667pt;}
.yf7{bottom:364.706667pt;}
.y14a{bottom:367.426667pt;}
.y20{bottom:370.146667pt;}
.y149{bottom:370.786667pt;}
.y54{bottom:373.506667pt;}
.yc2{bottom:374.786667pt;}
.y87{bottom:376.066667pt;}
.y17b{bottom:379.426667pt;}
.y198{bottom:381.506667pt;}
.yf5{bottom:383.426667pt;}
.y1f{bottom:388.866667pt;}
.y148{bottom:389.506667pt;}
.yf3{bottom:391.586667pt;}
.y53{bottom:392.226667pt;}
.yc1{bottom:393.506667pt;}
.y86{bottom:394.786667pt;}
.yf2{bottom:397.026667pt;}
.y17a{bottom:398.146667pt;}
.y197{bottom:400.226667pt;}
.y1e{bottom:407.586667pt;}
.y147{bottom:408.226667pt;}
.y52{bottom:410.946667pt;}
.yc0{bottom:412.226667pt;}
.y85{bottom:413.506667pt;}
.yf1{bottom:415.746667pt;}
.y179{bottom:416.866667pt;}
.y196{bottom:418.946667pt;}
.y1d{bottom:426.306667pt;}
.y146{bottom:426.946667pt;}
.y51{bottom:429.666667pt;}
.ybf{bottom:430.946667pt;}
.y84{bottom:432.226667pt;}
.yf0{bottom:434.466667pt;}
.y178{bottom:435.586667pt;}
.y195{bottom:437.666667pt;}
.yba{bottom:444.546667pt;}
.y1c{bottom:445.026667pt;}
.y145{bottom:445.666667pt;}
.y50{bottom:448.386667pt;}
.y83{bottom:450.946667pt;}
.yef{bottom:453.186667pt;}
.y177{bottom:454.306667pt;}
.y194{bottom:456.386667pt;}
.y144{bottom:464.226667pt;}
.y4f{bottom:467.106667pt;}
.y82{bottom:469.666667pt;}
.yee{bottom:471.906667pt;}
.y176{bottom:473.026667pt;}
.y193{bottom:475.106667pt;}
.y143{bottom:482.946667pt;}
.y1b{bottom:484.706667pt;}
.y4e{bottom:485.826667pt;}
.y81{bottom:488.386667pt;}
.yed{bottom:490.626667pt;}
.y175{bottom:491.746667pt;}
.yb9{bottom:493.826667pt;}
.y142{bottom:501.666667pt;}
.y4d{bottom:504.546667pt;}
.y80{bottom:507.106667pt;}
.yec{bottom:509.346667pt;}
.y174{bottom:510.466667pt;}
.y1a{bottom:511.266667pt;}
.y192{bottom:512.546667pt;}
.yb7{bottom:513.346667pt;}
.y141{bottom:520.386667pt;}
.y4c{bottom:523.266667pt;}
.y7f{bottom:525.826667pt;}
.y173{bottom:529.186667pt;}
.y19{bottom:529.986667pt;}
.y191{bottom:531.266667pt;}
.yeb{bottom:533.986667pt;}
.y140{bottom:539.106667pt;}
.y4b{bottom:541.986667pt;}
.y7e{bottom:544.546667pt;}
.y172{bottom:547.906667pt;}
.y18{bottom:548.706667pt;}
.y190{bottom:549.986667pt;}
.yb5{bottom:551.426667pt;}
.yea{bottom:552.706667pt;}
.y13f{bottom:557.826667pt;}
.y4a{bottom:560.706667pt;}
.y7d{bottom:563.266667pt;}
.y171{bottom:566.626667pt;}
.y17{bottom:567.426667pt;}
.y18f{bottom:568.706667pt;}
.ye9{bottom:571.426667pt;}
.y13e{bottom:576.546667pt;}
.y49{bottom:579.453333pt;}
.y7c{bottom:582.013333pt;}
.y170{bottom:585.373333pt;}
.y16{bottom:586.173333pt;}
.y18e{bottom:587.453333pt;}
.ye8{bottom:590.173333pt;}
.y13d{bottom:595.293333pt;}
.y48{bottom:598.173333pt;}
.y7b{bottom:600.733333pt;}
.y16f{bottom:604.093333pt;}
.y15{bottom:604.893333pt;}
.y18d{bottom:606.173333pt;}
.yb0{bottom:608.253333pt;}
.ye7{bottom:608.893333pt;}
.y13c{bottom:614.013333pt;}
.y47{bottom:616.893333pt;}
.y7a{bottom:619.453333pt;}
.y16e{bottom:622.813333pt;}
.y14{bottom:623.613333pt;}
.y18c{bottom:624.893333pt;}
.ye6{bottom:627.613333pt;}
.y10d{bottom:630.479928pt;}
.y6a{bottom:635.613333pt;}
.y79{bottom:638.173333pt;}
.y13b{bottom:638.493333pt;}
.y16d{bottom:641.533333pt;}
.y13a{bottom:641.853333pt;}
.y13{bottom:642.333333pt;}
.y46{bottom:643.613333pt;}
.ye5{bottom:646.333333pt;}
.y69{bottom:654.333333pt;}
.y78{bottom:656.893333pt;}
.y16c{bottom:660.253333pt;}
.y12{bottom:661.053333pt;}
.y45{bottom:662.333333pt;}
.ye4{bottom:664.893333pt;}
.y138{bottom:666.173333pt;}
.y68{bottom:672.893333pt;}
.y137{bottom:675.453333pt;}
.y77{bottom:675.613333pt;}
.y16b{bottom:678.973333pt;}
.y11{bottom:679.773333pt;}
.y44{bottom:680.893333pt;}
.ye3{bottom:683.613333pt;}
.yab{bottom:683.773333pt;}
.y67{bottom:691.613333pt;}
.y76{bottom:694.333333pt;}
.y16a{bottom:697.693333pt;}
.y10{bottom:698.493333pt;}
.y43{bottom:699.613333pt;}
.y136{bottom:702.173333pt;}
.ye2{bottom:702.333333pt;}
.y66{bottom:710.333333pt;}
.y75{bottom:713.053333pt;}
.y169{bottom:716.413333pt;}
.yf{bottom:717.213333pt;}
.y42{bottom:718.333333pt;}
.y135{bottom:720.893333pt;}
.ye1{bottom:721.053333pt;}
.y65{bottom:729.053333pt;}
.ya7{bottom:730.973333pt;}
.y74{bottom:731.773333pt;}
.y168{bottom:735.133333pt;}
.ye{bottom:735.933333pt;}
.y41{bottom:737.053333pt;}
.y134{bottom:739.613333pt;}
.ye0{bottom:739.773333pt;}
.y73{bottom:746.813333pt;}
.y64{bottom:747.773333pt;}
.y167{bottom:753.853333pt;}
.y40{bottom:755.773333pt;}
.yd{bottom:756.733333pt;}
.y133{bottom:758.333333pt;}
.ydf{bottom:758.493333pt;}
.ya1{bottom:769.053333pt;}
.y166{bottom:772.573333pt;}
.y3f{bottom:774.493333pt;}
.y132{bottom:777.053333pt;}
.yde{bottom:777.213333pt;}
.yc{bottom:779.933333pt;}
.y165{bottom:791.293333pt;}
.y3e{bottom:793.213333pt;}
.yb{bottom:794.813333pt;}
.y131{bottom:795.773333pt;}
.ydd{bottom:795.933333pt;}
.y164{bottom:810.053333pt;}
.y3d{bottom:811.973333pt;}
.y130{bottom:814.533333pt;}
.ya{bottom:814.693333pt;}
.y163{bottom:828.773333pt;}
.y3c{bottom:830.693333pt;}
.y12f{bottom:833.253333pt;}
.ydc{bottom:833.413333pt;}
.y9{bottom:837.093333pt;}
.ya0{bottom:838.853333pt;}
.y162{bottom:847.493333pt;}
.y3b{bottom:849.413333pt;}
.y12e{bottom:851.973333pt;}
.ydb{bottom:860.133333pt;}
.y9f{bottom:864.133333pt;}
.y12d{bottom:864.773333pt;}
.y161{bottom:866.213333pt;}
.y8{bottom:867.013333pt;}
.y3a{bottom:868.133333pt;}
.yda{bottom:878.853333pt;}
.y9e{bottom:882.853333pt;}
.y12c{bottom:883.493333pt;}
.y160{bottom:884.933333pt;}
.y39{bottom:886.853333pt;}
.y7{bottom:896.933333pt;}
.yd9{bottom:897.573333pt;}
.y9d{bottom:901.573333pt;}
.y12b{bottom:902.213333pt;}
.y15f{bottom:903.653333pt;}
.y38{bottom:905.573333pt;}
.y9c{bottom:915.013333pt;}
.yd8{bottom:916.293333pt;}
.y12a{bottom:920.933333pt;}
.y15e{bottom:922.373333pt;}
.y37{bottom:924.293333pt;}
.y5{bottom:932.613333pt;}
.y9b{bottom:934.533333pt;}
.y15d{bottom:935.813333pt;}
.y129{bottom:939.653333pt;}
.y36{bottom:943.013333pt;}
.y9a{bottom:953.893333pt;}
.y15c{bottom:955.173333pt;}
.y128{bottom:958.373333pt;}
.y4{bottom:961.253333pt;}
.y35{bottom:961.733333pt;}
.y99{bottom:973.253333pt;}
.y127{bottom:977.093333pt;}
.y34{bottom:980.453333pt;}
.y125{bottom:986.693333pt;}
.y3{bottom:989.893333pt;}
.y98{bottom:992.613333pt;}
.y124{bottom:993.253333pt;}
.y33{bottom:999.173333pt;}
.y32{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y31{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y30{bottom:1060.640000pt;}
.h21{height:2.080000pt;}
.h18{height:2.400000pt;}
.h17{height:2.560000pt;}
.h1f{height:3.360000pt;}
.h14{height:3.680000pt;}
.h13{height:4.000000pt;}
.h19{height:5.120000pt;}
.h16{height:5.440000pt;}
.h15{height:6.240000pt;}
.h1e{height:6.560000pt;}
.h20{height:18.560000pt;}
.hc{height:18.720000pt;}
.h9{height:18.752000pt;}
.h7{height:34.374375pt;}
.h1d{height:35.750835pt;}
.he{height:37.280000pt;}
.ha{height:37.440000pt;}
.hb{height:37.472000pt;}
.h1a{height:40.125312pt;}
.h1c{height:41.690771pt;}
.hf{height:46.400000pt;}
.h12{height:48.640000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h11{height:56.192000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hd{height:69.152000pt;}
.h10{height:74.880000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h1b{height:187.994068pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:1.280013pt;}
.w3{width:40.000000pt;}
.w1b{width:42.080000pt;}
.w17{width:53.952000pt;}
.w11{width:54.240000pt;}
.w27{width:58.240000pt;}
.we{width:60.672000pt;}
.w14{width:60.832000pt;}
.w24{width:63.552000pt;}
.w1d{width:64.160000pt;}
.w1e{width:64.192000pt;}
.w1f{width:64.320000pt;}
.w1c{width:64.352000pt;}
.wc{width:65.152000pt;}
.wa{width:66.880000pt;}
.w10{width:66.912000pt;}
.w18{width:67.200000pt;}
.w21{width:70.240000pt;}
.w13{width:73.600000pt;}
.w19{width:73.632000pt;}
.wd{width:73.920000pt;}
.wf{width:76.320000pt;}
.w23{width:76.960000pt;}
.w22{width:76.992000pt;}
.w7{width:113.312000pt;}
.w28{width:123.392000pt;}
.w20{width:128.512000pt;}
.w26{width:140.026667pt;}
.w25{width:147.226667pt;}
.w9{width:152.186667pt;}
.w5{width:160.346667pt;}
.w12{width:194.786667pt;}
.w15{width:268.386667pt;}
.w8{width:271.226667pt;}
.w16{width:329.213333pt;}
.w1a{width:340.793632pt;}
.w4{width:366.786667pt;}
.w6{width:407.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x11{left:-2.560000pt;}
.x0{left:0.000000pt;}
.x22{left:3.692052pt;}
.xb{left:6.720000pt;}
.x23{left:29.637965pt;}
.xd{left:41.114667pt;}
.x6{left:47.999988pt;}
.x8{left:57.599988pt;}
.x31{left:71.999988pt;}
.x1a{left:76.511988pt;}
.x7{left:96.031988pt;}
.xa{left:112.832000pt;}
.xe{left:128.032000pt;}
.x20{left:144.026655pt;}
.x5{left:153.946655pt;}
.x12{left:164.346667pt;}
.x25{left:183.226667pt;}
.x2a{left:188.826667pt;}
.x21{left:225.879982pt;}
.x13{left:231.226667pt;}
.x14{left:232.506667pt;}
.xf{left:241.986667pt;}
.x3{left:254.786655pt;}
.x24{left:256.494819pt;}
.x1b{left:268.546655pt;}
.x1e{left:286.306667pt;}
.x26{left:289.666667pt;}
.x15{left:297.666667pt;}
.x2{left:311.586655pt;}
.x2b{left:317.346667pt;}
.x1f{left:353.506667pt;}
.x16{left:371.586667pt;}
.x4{left:372.546655pt;}
.x2c{left:387.586667pt;}
.x27{left:418.013333pt;}
.x30{left:422.013333pt;}
.x1{left:426.013322pt;}
.x1c{left:427.133333pt;}
.x17{left:432.253333pt;}
.x2f{left:438.173333pt;}
.x2d{left:464.573333pt;}
.x28{left:482.173333pt;}
.x1d{left:500.733333pt;}
.x18{left:508.573333pt;}
.x10{left:513.853333pt;}
.xc{left:520.893333pt;}
.x2e{left:541.533333pt;}
.x29{left:546.493333pt;}
.x19{left:575.493333pt;}
.x9{left:577.253322pt;}
.x32{left:745.279988pt;}
}




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